-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChocolateFeastHR.py
85 lines (59 loc) · 3.15 KB
/
ChocolateFeastHR.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
"""
Little Bobby loves chocolate. He frequently goes to his favorite store, Penny Auntie, to buy them. They are having a promotion at Penny Auntie. If Bobby saves enough wrappers, he can turn them in for a free chocolate.
For example, Bobby has to spend on bars of chocolate that cost each. He can turn in wrappers to receive another bar. Initially, he buys bars and has wrappers after eating them. He turns in of them, leaving him with , for more bars. After eating those two, he has wrappers, turns in leaving him with wrapper and his new bar. Once he eats that one, he has wrappers and turns them in for another bar. After eating that one, he only has wrapper, and his feast ends. Overall, he has eaten bars.
Function Description
Complete the chocolateFeast function in the editor below. It must return the number of chocolates Bobby can eat after taking full advantage of the promotion.
chocolateFeast has the following parameter(s):
n: an integer representing Bobby's initial amount of money
c: an integer representing the cost of a chocolate bar
m: an integer representing the number of wrappers he can turn in for a free bar
Note: Little Bobby will always turn in his wrappers if he has enough to get a free chocolate.
Input Format
The first line contains an integer, , denoting the number of test cases to analyze.
Each of the next lines contains three space-separated integers: , , and . They represent money to spend, cost of a chocolate, and the number of wrappers he can turn in for a free chocolate.
Constraints
Output Format
For each trip to Penny Auntie, print the total number of chocolates Bobby eats on a new line.
Sample Input
3
10 2 5
12 4 4
6 2 2
Sample Output
6
3
5
Explanation
Bobby makes the following trips to the store:
He spends his dollars on chocolates at dollars apiece. He then eats them and exchanges all wrappers to get more. He eats chocolates.
He spends his dollars on chocolates at dollars apiece. He has wrappers, but needs to trade for his next chocolate. He eats chocolates.
He spends dollars on chocolates at dollars apiece. He then exchanges of the wrappers for additional piece. Next, he uses his third leftover chocolate wrapper from his initial purchase with the wrapper from his trade-in to do a second trade-in for more piece. At this point he has wrapper left, which is not enough to perform another trade-in. He eats chocolates.
"""
# SOLUTION
#!/bin/python3
import math
import os
import random
import re
import sys
# Complete the chocolateFeast function below.
def chocolateFeast(cash, cost, wrapper_cost):
chocolate = cash // cost
wrappers = chocolate
while wrappers // wrapper_cost > 0 :
new_chocolate = wrappers // wrapper_cost
wrappers -= new_chocolate * wrapper_cost
wrappers += new_chocolate
chocolate += new_chocolate
return chocolate
if __name__ == '__main__':
fptr = open(os.environ['OUTPUT_PATH'], 'w')
t = int(input())
for t_itr in range(t):
ncm = input().split()
n = int(ncm[0])
c = int(ncm[1])
m = int(ncm[2])
result = chocolateFeast(n, c, m)
fptr.write(str(result) + '\n')
fptr.close()