CF1065A.Vasya and Chocolate

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There is a special offer in Vasya's favourite supermarket: if the customer buys aa chocolate bars, he or she may take bb additional bars for free. This special offer can be used any number of times.

Vasya currently has ss roubles, and he wants to get as many chocolate bars for free. Each chocolate bar costs cc roubles. Help Vasya to calculate the maximum possible number of chocolate bars he can get!

输入格式

The first line contains one integer tt ( 1t1001 \le t \le 100 ) — the number of testcases.

Each of the next tt lines contains four integers s,a,b,c (1s,a,b,c109)s, a, b, c~(1 \le s, a, b, c \le 10^9) — the number of roubles Vasya has, the number of chocolate bars you have to buy to use the special offer, the number of bars you get for free, and the cost of one bar, respectively.

输出格式

Print tt lines. ii -th line should contain the maximum possible number of chocolate bars Vasya can get in ii -th test.

输入输出样例

  • 输入#1

    2
    10 3 1 1
    1000000000 1 1000000000 1
    

    输出#1

    13
    1000000001000000000
    

说明/提示

In the first test of the example Vasya can buy 99 bars, get 33 for free, buy another bar, and so he will get 1313 bars.

In the second test Vasya buys 10000000001000000000 bars and gets 10000000000000000001000000000000000000 for free. So he has 10000000010000000001000000001000000000 bars.

首页