코딩일지/python 백준 알고리즘

python 백준 알고리즘 25305번: 커트라인

야언 2022. 9. 20. 18:15

https://www.acmicpc.net/problem/25305

 

25305번: 커트라인

시험 응시자들 가운데 1등은 100점, 2등은 98점, 3등은 93점이다. 2등까지 상을 받으므로 커트라인은 98점이다.

www.acmicpc.net

 

 

점수 리스트를 내림차순 정렬해서 k-1번째를 프린트하면 되는 간단한 문제

 

N, k = map(int,input().split())
scores = list(map(int,input().split()))

scores.sort(reverse=True)
print(scores[k - 1])