

Time Limit: 2 sec / Memory Limit: 256 MB
配点 : 点
問題文
あなたは行きつけの店、インフバリューにアイスティーを買いに来ています。
この店では、様々なサイズのボトル入りアイスティーが様々な価格で売られています。具体的な価格は、 リットルサイズが一つ 円、 リットルサイズが一つ 円、 リットルサイズが一つ 円、 リットルサイズが一つ 円です。各サイズの在庫は無限にあります。
あなたはちょうど リットルのアイスティーを買いたいです。これに必要な金額は何円でしょうか?
制約
- 入力値はすべて整数である。
入力
入力は以下の形式で標準入力から与えられる。
出力
ちょうど リットルのアイスティーを買うのに必要な最小の金額を出力せよ。
入力例 1Copy
20 30 70 90 3
出力例 1Copy
150
リットルサイズ一つと リットルサイズ二つを買うと、 円で リットルが手に入ります。
入力例 2Copy
10000 1000 100 10 1
出力例 2Copy
100
リットルサイズはたったの 円ですが、 リットルしか必要ありません。ですから、 リットルサイズを 円で買う必要があります。
入力例 3Copy
10 100 1000 10000 1
出力例 3Copy
40
今度は リットルサイズ四つを 円で買うのがよいです。
入力例 4Copy
12345678 87654321 12345678 87654321 123456789
出力例 4Copy
1524157763907942
Score : points
Problem Statement
You've come to your favorite store Infinitesco to buy some ice tea.
The store sells ice tea in bottles of different volumes at different costs. Specifically, a -liter bottle costs yen, a -liter bottle costs yen, a -liter bottle costs yen, and a -liter bottle costs yen. The store has an infinite supply of bottles of each type.
You want to buy exactly liters of ice tea. How many yen do you have to spend?
Constraints
- All input values are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the smallest number of yen you have to spend to buy exactly liters of ice tea.
Sample Input 1Copy
20 30 70 90 3
Sample Output 1Copy
150
Buy one -liter bottle and two -liter bottles. You'll get liters for yen.
Sample Input 2Copy
10000 1000 100 10 1
Sample Output 2Copy
100
Even though a -liter bottle costs just yen, you need only liter. Thus, you have to buy a -liter bottle for yen.
Sample Input 3Copy
10 100 1000 10000 1
Sample Output 3Copy
40
Now it's better to buy four -liter bottles for yen.
Sample Input 4Copy
12345678 87654321 12345678 87654321 123456789
Sample Output 4Copy
1524157763907942