Skip to content

Commit ed020e0

Browse files
committed
[#15] Feat: Add 동전 0
1 parent 1f7d4e2 commit ed020e0

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

11047.py

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# 동전 0
2+
import sys
3+
from collections import deque
4+
5+
input = sys.stdin.readline
6+
7+
N, K = map(int, input().split())
8+
coins = deque()
9+
10+
for _ in range(N):
11+
coins.append(int(input()))
12+
13+
answer = 0
14+
15+
while K > 0:
16+
coin = coins.pop()
17+
answer += K // coin
18+
K %= coin
19+
20+
print(answer)

0 commit comments

Comments
 (0)