감자튀김 공장🍟

[백준/25305] 커트라인 (with 파이썬) 본문

Algorithm/BOJ

[백준/25305] 커트라인 (with 파이썬)

Potato potage 2022. 11. 9. 20:36
반응형

✔ 문제


풀이

n, k = map(int, input().split())
score = list(map(int, input().split()))
score.sort(reverse=True)

print(score[k-1])

✔ 설명

score.sort()를 하게 되면 오름차순으로 정렬이 되는데 reverse=True라는 속성을 줘서 역순(내림차순)으로 정렬이 되게끔 하면 된다.

반응형
Comments