문제 풀이 (Python3)
coins = [25, 10, 5, 1]
result = [0, 0, 0, 0]
t = int(input())
c = list()
for _ in range(t):
c.append(int(input()))
for i in c:
while True:
for idx, coin in enumerate(coins):
result[idx] = i // coin
i = i % coin
if i == 0:
print(' '.join(map(str,result)))
break
'Algorithm > Python' 카테고리의 다른 글
[백준 11047번 - 동전0] (0) | 2023.01.25 |
---|---|
[백준 11399번 - ATM] (0) | 2023.01.24 |
[Python] Optuna 사용법 (0) | 2021.07.07 |
Plotly 사용법 (0) | 2021.07.05 |
[Python] Matplotlib 그림의 제목 조절 방법 (0) | 2021.02.03 |