[프로그래머스 lv.1] 과일장수_python

2022. 11. 14. 21:13BOJ

728x90

코부캠 3차 붙고싶어요 ㅠㅠ

def solution(k, m, score):
    answer = 0
    cnt = 0
    score.sort(reverse=True) #점수를 내림차순정렬
    for s in score:
        cnt += 1
        if cnt == m: # 박스에 m개가 담기면
            cnt = 0
            answer += s * m #최저 사과점수 * 사과개수
        

    return answer