백준-2720 : 세탁소 사장 동혁(Python)

잡초·2023년 4월 18일
0
post-thumbnail
n = int(input())

for _ in  range(n):
    c = int(input())
    arr = []
    for i in [25, 10, 5, 1]:
        arr.append(c // i)
        c = c % i
    print(*arr)

print(*arr) list안의 내용을 한줄로 출력하는 방법

profile
개발자가 되고싶은 잡초

0개의 댓글