A - T or T 解説 /

実行時間制限: 2 sec / メモリ制限: 1024 MB

配点 : 100100

問題文

私たちは NN 人で旅行しようとしており、その交通手段として電車とタクシーがあります。

電車を使うと 11 人あたり AA 円かかります。

タクシーを使うと NN 人で BB 円かかります。

全員の交通費の合計は最小でいくらになるでしょうか。

制約

  • 入力は全て整数である。
  • 1N201 \leq N \leq 20
  • 1A501 \leq A \leq 50
  • 1B501 \leq B \leq 50

入力

入力は以下の形式で標準入力から与えられる。

NN AA BB

出力

最小の合計交通費を表す整数を出力せよ。


入力例 1Copy

Copy
4 2 9

出力例 1Copy

Copy
8

電車を使うと 4×2=84 \times 2 = 8 円かかり、タクシーを使うと 99 円かかるので、全員の交通費の合計の最小値は 88 円です。


入力例 2Copy

Copy
4 2 7

出力例 2Copy

Copy
7

入力例 3Copy

Copy
4 2 8

出力例 3Copy

Copy
8

Score : 100100 points

Problem Statement

NN of us are going on a trip, by train or taxi.

The train will cost each of us AA yen (the currency of Japan).

The taxi will cost us a total of BB yen.

How much is our minimum total travel expense?

Constraints

  • All values in input are integers.
  • 1N201 \leq N \leq 20
  • 1A501 \leq A \leq 50
  • 1B501 \leq B \leq 50

Input

Input is given from Standard Input in the following format:

NN AA BB

Output

Print an integer representing the minimum total travel expense.


Sample Input 1Copy

Copy
4 2 9

Sample Output 1Copy

Copy
8

The train will cost us 4×2=84 \times 2 = 8 yen, and the taxi will cost us 99 yen, so the minimum total travel expense is 88 yen.


Sample Input 2Copy

Copy
4 2 7

Sample Output 2Copy

Copy
7

Sample Input 3Copy

Copy
4 2 8

Sample Output 3Copy

Copy
8


2025-03-14 (金)
13:11:16 +00:00