JAVA/프로그래머스

[프로그래머스/자바] 명예의 전당(1)

동백05 2024. 1. 17. 22:18

https://school.programmers.co.kr/learn/courses/30/lessons/138477

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

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;
    }
}