728x90
문제
정답
import java.util.*;
class Solution {
public int solution(int k, int m, int[] score) {
int answer = 0;
List<Integer> scores = new ArrayList<>();
List<Integer> box = new ArrayList<>();
for(int s:score) {
scores.add(s);
}
Collections.sort(scores);
for(int i = scores.size() - 1; i >= 0; i--) {
if(box.size() < m){
box.add(scores.get(i));
continue;
} else {
int min = box.get(m-1);
answer += min * m;
box.clear();
box.add(scores.get(i));
}
}
if(box.size() == m) {
int min = box.get(m-1);
answer += min * m;
}
return answer;
}
}
728x90
'프로그래머스 코딩테스트 > JAVA' 카테고리의 다른 글
[프로그래머스] 소수 만들기 JAVA (0) | 2024.08.08 |
---|---|
[프로그래머스] 모의고사 JAVA (0) | 2024.08.08 |
[프로그래머스] 카드 뭉치 JAVA (0) | 2024.08.05 |
[프로그래머스] 가장 가까운 같은 글자 JAVA (0) | 2024.08.05 |
[프로그래머스] 푸드 파이트 대회 JAVA (0) | 2024.08.05 |