CF1555A.PizzaForces

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

PizzaForces is Petya's favorite pizzeria. PizzaForces makes and sells pizzas of three sizes: small pizzas consist of 66 slices, medium ones consist of 88 slices, and large pizzas consist of 1010 slices each. Baking them takes 1515 , 2020 and 2525 minutes, respectively.

Petya's birthday is today, and nn of his friends will come, so he decided to make an order from his favorite pizzeria. Petya wants to order so much pizza that each of his friends gets at least one slice of pizza. The cooking time of the order is the total baking time of all the pizzas in the order.

Your task is to determine the minimum number of minutes that is needed to make pizzas containing at least nn slices in total. For example:

  • if 1212 friends come to Petya's birthday, he has to order pizzas containing at least 1212 slices in total. He can order two small pizzas, containing exactly 1212 slices, and the time to bake them is 3030 minutes;
  • if 1515 friends come to Petya's birthday, he has to order pizzas containing at least 1515 slices in total. He can order a small pizza and a large pizza, containing 1616 slices, and the time to bake them is 4040 minutes;
  • if 300300 friends come to Petya's birthday, he has to order pizzas containing at least 300300 slices in total. He can order 1515 small pizzas, 1010 medium pizzas and 1313 large pizzas, in total they contain 156+108+1310=30015 \cdot 6 + 10 \cdot 8 + 13 \cdot 10 = 300 slices, and the total time to bake them is 1515+1020+1325=75015 \cdot 15 + 10 \cdot 20 + 13 \cdot 25 = 750 minutes;
  • if only one friend comes to Petya's birthday, he can order a small pizza, and the time to bake it is 1515 minutes.

输入格式

The first line contains a single integer tt ( 1t1041 \le t \le 10^4 ) — the number of testcases.

Each testcase consists of a single line that contains a single integer nn ( 1n10161 \le n \le 10^{16} ) — the number of Petya's friends.

输出格式

For each testcase, print one integer — the minimum number of minutes that is needed to bake pizzas containing at least nn slices in total.

输入输出样例

  • 输入#1

    6
    12
    15
    300
    1
    9999999999999999
    3

    输出#1

    30
    40
    750
    15
    25000000000000000
    15
首页