https://school.programmers.co.kr/learn/courses/30/lessons/138477
import java.util.*;
class Solution {
public int[] solution(int k, int[] score) {
int[] fame = new int[k];
Arrays.fill(fame,2001);
int length=score.length;
int[] answer=new int[length];
int min=2001;
for(int i=0;i<length;i++){
if(i<k){
fame[i]=score[i];
Arrays.sort(fame);
}else{
if(fame[0]<score[i]){
fame[0]=score[i];
Arrays.sort(fame);
}
}
answer[i]=fame[0];
}
return answer;
}
}
'JAVA > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] 크기가 작은 (0) | 2024.01.22 |
---|---|
[프로그래머스/자바] 카드 뭉치 (0) | 2024.01.18 |
[프로그래머스/자바] 추억 점수 (0) | 2024.01.16 |
[프로그래머스/자바] [1차] 비밀지도 (0) | 2024.01.15 |
[프로그래머스/자바] 두 개 뽑아서 더하기 (0) | 2024.01.15 |
댓글