2071.Alyona and copybooks

Time Limit: 1s Memory Limit: 256MB

Little girl Alyona is in a shop to buy some copybooks for school. She study four subjects so she wants to have equal number of copybooks for each of the subjects. There are three types of copybook's packs in the shop: it is possible to buy one copybook for a rubles, a pack of two copybooks for b rubles, and a pack of three copybooks for c rubles. Alyona already has n copybooks.

What is the minimum amount of rubles she should pay to buy such number of copybooks k that n+k is divisible by 4? There are infinitely many packs of any type in the shop. Alyona can buy packs of different type in the same purchase.

Input Format(From the terminal/stdin)

The only line contains 4 integers n, a, b, c (1 \le n,a,b,c \le 109).

Output Format(To the terminal/stdout)

Print the minimum amount of rubles she should pay to buy such number of copybooks k that n+k is divisible by 4.

Sample Input 1

Copy
1 1 3 4
 · · · \n

Sample Output 1

Copy
3
 \n

Sample Input 2

Copy
6 2 1 1
 · · · \n

Sample Output 2

Copy
1
 \n

Sample Input 3

Copy
4 4 4 4
 · · · \n

Sample Output 3

Copy
0
 \n

Sample Input 4

Copy
999999999 1000000000 1000000000 1000000000
         ·          ·          ·          \n

Sample Output 4

Copy
1000000000
          \n

Hints

In the first example Alyona can buy 3 packs of 1 copybook for 3a=3 rubles in total. After that she will have 4 copybooks which she can split between the subjects equally.

In the second example Alyuna can buy a pack of 2 copybooks for b=1 ruble. She will have 8 copybooks in total.

In the third example Alyona can split the copybooks she already has between the 4 subject equally, so she doesn't need to buy anything.

In the fourth example Alyona should buy one pack of one copybook.

Submit

请先 登录

© 2025 FAQs