728x90
반응형
단순 사칙연산 문제이다.
for _ in range(int(input())):
C = int(input())
d = [25, 10, 5, 1]
li = []
for n in d:
li.append(C//n)
C = C%n
print(*li)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 2754번 학점계산(python) (0) | 2021.02.11 |
---|---|
백준 알고리즘 2721번 삼각수의 합(python) (0) | 2021.02.11 |
백준 알고리즘 2576번 홀수(python) (0) | 2021.02.11 |
백준 알고리즘 2566번 최댓값(python) (0) | 2021.02.11 |
백준 알고리즘 2547번 사탕 선생 고창영(python) (0) | 2021.02.11 |