Skip to content

Commit bb41947

Browse files
committed
[#9] Feat: Add 세탁소 사장 동혁
1 parent 763d260 commit bb41947

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

2720.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# 세탁소 사장 동혁
2+
3+
T = int(input())
4+
coins = [25, 10, 5, 1]
5+
6+
for _ in range(T):
7+
change = int(input())
8+
for coin in coins:
9+
print(change//coin, end=' ')
10+
change %= coin
11+
print()

0 commit comments

Comments
 (0)