티스토리 뷰
https://www.acmicpc.net/problem/5585
import sys
c = int(sys.stdin.readline())
res = 0
r = 1000 - c
coin = [500, 100, 50, 10, 5, 1]
for i in range(6):
res += (r // coin[i])
r = r % coin[i]
print(res)
'Algorithm > Baekjoon' 카테고리의 다른 글
[백준] 3085 : 사탕 게임 - Python (0) | 2020.04.21 |
---|---|
[백준] 1463 : 1로 만들기 - Python (0) | 2020.04.20 |
[백준] 2309 : 일곱 난쟁이 - Python (0) | 2020.04.17 |
[백준] 1966 : 프린터 큐 - Python (0) | 2020.04.17 |
[백준] 1094 : 막대기 - Python (0) | 2020.04.16 |