-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHit_the_Lottery.cpp
More file actions
65 lines (58 loc) · 1.41 KB
/
Copy pathHit_the_Lottery.cpp
File metadata and controls
65 lines (58 loc) · 1.41 KB
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
/*Hit the Lottery
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output
Allen has a LOT of money. He has n dollars in the bank. For security reasons, he wants to withdraw it in cash (we will not disclose the reasons here). The denominations for dollar bills are 1, 5, 10, 20, 100. What is the minimum number of bills Allen could receive after withdrawing his entire balance?
Input
The first and only line of input contains a single integer n (1≤n≤109).
Output
Output the minimum number of bills that Allen could receive.
Examples
inputCopy
125
outputCopy
3
inputCopy
43
outputCopy
5
inputCopy
1000000000
outputCopy
10000000
Note
In the first sample case, Allen can withdraw this with a 100 dollar bill, a 20 dollar bill, and a 5 dollar bill. There is no way for Allen to receive 125 dollars in one or two bills.
In the second sample case, Allen can withdraw two 20 dollar bills and three 1 dollar bills.
In the third sample case, Allen can withdraw 100000000 (ten million!) 100 dollar bills.
*/
#include <bits/stdc++.h>
using namespace std;
int main(){
int n,sum=0;
cin>>n;
for(int i=0;i<100000000;i++){
if(n>=100){
n=n-100;
sum=sum+1;
}
if(n<100 && n>=20){
n=n-20;
sum=sum+1;
}
if(n<20 && n>=10){
n=n-10;
sum=sum+1;
}
if(n<10 && n>=5){
n=n-5;
sum=sum+1;
}
if(n<5 && n>=1){
n=n-1;
sum=sum+1;
}
}
cout<<sum<<endl;
return 0;
}