5585: ๊ฑฐ์ค๋ฆ๋
Greedy ๋ฌธ์ ์ด๋ค. ์์ฃผ ๊ธฐ๋ณธ์ ์ธ ์์ ์ด๊ณ ์ด์ ์ ํผ๊ฑฐ๋ ๊ฑฐ์ ์ ์ฌํ ๋ฌธ์ ๋ค.
Greedy
N, cnt = 1000 - int(input()), 0 coins = [500, 100, 50, 10, 5, 1] for coin in coins: cnt += N // coin N %= coin print(cnt)