1
2
3
4
5
6
7
8
9
10
11
|
from bisect import bisect_right
def solution(d, budget):
answer = 0
process = []
plus = 0
sorted_d = sorted(d)
for i in sorted_d:
plus += i
process.append(plus)
return bisect_right(process, budget)
|
cs |
'알고리즘' 카테고리의 다른 글
프로그래머스 오픈채팅방 - 2019 KAKAO BLIND RECRUITMENT (파이썬) (0) | 2020.09.27 |
---|---|
프로그래머스 가운데 글자 가져오기 (파이썬) (0) | 2020.09.25 |
프로그래머스 방금그곡 -2018 KAKAO BLIND RECRUITMENT (파이썬) (0) | 2020.09.22 |
프로그래머스 두 개 뽑아서 더하기 (코틀린) (0) | 2020.09.18 |
프로그래머스 삼각 달팽이 (코틀린) (0) | 2020.09.17 |