Parking

AtCoder
IDabc080_a
Time2000ms
Memory256MB
Difficulty
You are parking at a parking lot. You can choose from the following two fee plans: * Plan $1$: The fee will be $A×T$ yen (the currency of Japan) when you park for $T$ hours. * Plan $2$: The fee will be $B$ yen, regardless of the duration. Find the minimum fee when you park for $N$ hours. ## Constraints * $1≤N≤20$ * $1≤A≤100$ * $1≤B≤2000$ * All input values are integers. ## Input Input is given from Standard Input in the following format: $N$ $A$ $B$ [samples]
Samples
Input #1
7 17 120
Output #1
119

*   If you choose Plan $1$, the fee will be $7×17=119$ yen.
*   If you choose Plan $2$, the fee will be $120$ yen.

Thus, the minimum fee is $119$ yen.
Input #2
5 20 100
Output #2
100

The fee might be the same in the two plans.
Input #3
6 18 100
Output #3
100
API Response (JSON)
{
  "problem": {
    "name": "Parking",
    "description": {
      "content": "You are parking at a parking lot. You can choose from the following two fee plans: *   Plan $1$: The fee will be $A×T$ yen (the currency of Japan) when you park for $T$ hours. *   Plan $2$: The fee w",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc080_a"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "You are parking at a parking lot. You can choose from the following two fee plans:\n\n*   Plan $1$: The fee will be $A×T$ yen (the currency of Japan) when you park for $T$ hours.\n*   Plan $2$: The fee w...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments