728x90
https://www.acmicpc.net/problem/11047
import sys
input = sys.stdin.readline
answer = 0
N, K = map(int, input().split(" "))
coins = list()
for i in range(N):
M = int(input())
if M <= K:
coins.append(M)
coins.sort(reverse = True)
for i in coins:
remain = K - (K // i) * i
answer += (K // i)
K = remain
print(answer)
728x90
'Study > Coding Test' 카테고리의 다른 글
[백준] 2563 - 색종이 Python (0) | 2023.10.11 |
---|---|
[백준] 1339 - 단어 수학 Python (0) | 2023.10.11 |
[백준] 14502 - 연구소 Python (0) | 2023.10.10 |
[백준] 2156 - 포도주 시식 Python (0) | 2023.10.10 |
[백준] 1406 - 에디터 Python (0) | 2023.10.10 |