https://www.acmicpc.net/problem/11047
import sys
input = sys.stdin.readline
n , goal = map(int, input().split())
count = 0
money_list = [int(input().strip()) for _ in range(n)]
money_list.sort(reverse=True)
for i in money_list:
count += goal // i
goal = goal % i
print(count)
단순하게 큰 수부터 나눠가면 해결되는 간단한 문제 이게 왜 level 3 에 있는거지 싶었다.
'백준 문제 풀이 및 피드백' 카테고리의 다른 글
2023.01.18 토마토 백준[파이썬] (0) | 2023.01.18 |
---|---|
2023.01.18 좌표압축 백전 [파이썬] (0) | 2023.01.18 |
2023.01.18 나는야 포켓몬 마스터 이다솜[파이썬] (0) | 2023.01.18 |
2023.01.18 피보나치 함수 백준[파이썬] (0) | 2023.01.18 |
2023.01.17 최대 힙 백준 [파이썬] (0) | 2023.01.17 |