728x90
https://school.programmers.co.kr/learn/courses/30/lessons/138477
소스코드
using System;
public class Solution
{
public int[] solution(int k, int[] score)
{
int[] answer = new int[score.Length];
int[] temples = new int[k];
for (int i = 0; i < temples.Length; i++)
temples[i] = -1;
for (int i = 0; i < score.Length; i++)
{
int target = score[i];
int min = 9999;
for (int j = 0; j < temples.Length; j++)
{
if (temples[j] < target)
{
int temp = temples[j];
temples[j] = target;
target = temp;
}
if (temples[j] > -1 && min > temples[j])
min = temples[j];
}
answer[i] = min;
}
return answer;
}
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv.1 과일 장수 C# (0) | 2023.06.13 |
---|---|
※[프로그래머스]Lv.1 기사단원의 무기 C# (약수의개수,시간복잡도개선) (0) | 2023.06.13 |
[프로그래머스]Lv.1 가장 가까운 같은 글자 C# (0) | 2023.06.13 |
[프로그래머스]Lv.1 개인정보 수집 유효기간 C# (0) | 2023.06.13 |
[프로그래머스]Lv.1 둘만의 암호C# (0) | 2023.06.12 |