CF1118A.Water Buying

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Polycarp wants to cook a soup. To do it, he needs to buy exactly nn liters of water.

There are only two types of water bottles in the nearby shop — 11 -liter bottles and 22 -liter bottles. There are infinitely many bottles of these two types in the shop.

The bottle of the first type costs aa burles and the bottle of the second type costs bb burles correspondingly.

Polycarp wants to spend as few money as possible. Your task is to find the minimum amount of money (in burles) Polycarp needs to buy exactly nn liters of water in the nearby shop if the bottle of the first type costs aa burles and the bottle of the second type costs bb burles.

You also have to answer qq independent queries.

输入格式

The first line of the input contains one integer qq ( 1q5001 \le q \le 500 ) — the number of queries.

The next nn lines contain queries. The ii -th query is given as three space-separated integers nin_i , aia_i and bib_i ( 1ni1012,1ai,bi10001 \le n_i \le 10^{12}, 1 \le a_i, b_i \le 1000 ) — how many liters Polycarp needs in the ii -th query, the cost (in burles) of the bottle of the first type in the ii -th query and the cost (in burles) of the bottle of the second type in the ii -th query, respectively.

输出格式

Print qq integers. The ii -th integer should be equal to the minimum amount of money (in burles) Polycarp needs to buy exactly nin_i liters of water in the nearby shop if the bottle of the first type costs aia_i burles and the bottle of the second type costs bib_i burles.

输入输出样例

  • 输入#1

    4
    10 1 3
    7 3 2
    1 1000 1
    1000000000000 42 88
    

    输出#1

    10
    9
    1000
    42000000000000
    
首页