forked from sureshmangs/Code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1525A - Potion-making.cpp
62 lines (43 loc) · 1.8 KB
/
1525A - Potion-making.cpp
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
/*
You have an initially empty cauldron, and you want to brew a potion in it. The potion consists of two ingredients: magic essence and water. The potion you want to brew should contain exactly k % magic essence and (100-k) % water.
In one step, you can pour either one liter of magic essence or one liter of water into the cauldron. What is the minimum number of steps to brew a potion? You don't care about the total volume of the potion, only about the ratio between magic essence and water in it.
A small reminder: if you pour e liters of essence and w liters of water (e+w>0) into the cauldron, then it contains ee+w·100 % (without rounding) magic essence and we+w·100 % water.
Input
The first line contains the single t (1=t=100) — the number of test cases.
The first and only line of each test case contains a single integer k (1=k=100) — the percentage of essence in a good potion.
Output
For each test case, print the minimum number of steps to brew a good potion. It can be proved that it's always possible to achieve it in a finite number of steps.
Example
inputCopy
3
3
100
25
outputCopy
100
1
4
Note
In the first test case, you should pour 3 liters of magic essence and 97 liters of water into the cauldron to get a potion with 3 % of magic essence.
In the second test case, you can pour only 1 liter of essence to get a potion with 100 % of magic essence.
In the third test case, you can pour 1 liter of magic essence and 3 liters of water
*/
#include<bits/stdc++.h>
using namespace std;
int gcdd(int a, int b) {
if (b == 0) return a;
return gcdd(b, a % b);
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int t;
cin >> t;
while (t--) {
int k;
cin >> k;
int gc = gcdd(k, 100);
cout << 100 / gc << endl;
}
return 0;
}