문제 링크
https://www.acmicpc.net/problem/11047
정답 코드
import sys
N, K = map(int,sys.stdin.readline().split())
money = []
for i in range(N):
money.append(int(sys.stdin.readline()))
count = 0
bill = money[len(money)-1]
def greedy(K,bill,count):
if K >= bill:
count += K//bill
K -= K//bill*bill
if K == 0:
print(count)
return
bill = money[money.index(bill)-1]
greedy(K,bill,count)
greedy(K,bill,count)
728x90
'파이썬 알고리즘 문제 풀이' 카테고리의 다른 글
Baekjoon Online Judge 10610번 파이썬. 그리디. (0) | 2023.01.06 |
---|---|
Baekjoon Online Judge 2875번. 그리디 (0) | 2023.01.05 |
Baekjoon Online Judge 1629번 파이썬. 분할 정복. (0) | 2022.12.29 |
Baekjoon Online Judge 1780번 파이썬. 분할 정복. (0) | 2022.12.27 |
Baekjoon Online Judge 1992번 파이썬. 분할 정복. (0) | 2022.12.27 |