def solution(k, m, score):
answer = 0
score = sorted(score, reverse = True)
for i in range(0, len(score), m):
tmp = score[i:i+m]
if len(tmp) == m:
answer += min(tmp) * m
return answer
728x90
반응형
LIST
'알고리즘' 카테고리의 다른 글
[프로그래머스] 카드 뭉치 (0) | 2023.10.07 |
---|---|
[프로그래머스] 폰켓몬 (0) | 2023.10.07 |
[프로그래머스] 그룹별 조건에 맞는 식당 목록 출력하기 (0) | 2023.10.07 |
[프로그래머스] 오프라인/온라인 판매 데이터 통합하기 (0) | 2023.10.07 |
[프로그래머스] 실패율 (1) | 2023.10.07 |