import java.util.*;
class Solution {
public int solution(int k, int m, int[] score) {
int answer = 0;
Integer[] scores = new Integer[score.length];
for(int i=0; i<scores.length; i++){
scores[i] = score[i];
}
Arrays.sort(scores, Collections.reverseOrder());
int index = m-1;
for(int i=0; i<scores.length/m; i++){
answer += m * scores[index];
index += m;
}
return answer;
}
}
'공부기록 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 소수 만들기 (0) | 2024.02.12 |
---|---|
[프로그래머스] 추억 점수 (0) | 2024.02.12 |
[프로그래머스] 푸드 파이트 대회 (0) | 2024.02.04 |
[프로그래머스] 콜라 문제 (0) | 2024.02.04 |
[프로그래머스] 스킬트리 (0) | 2024.02.03 |