[python_파이썬_pass]백준_25305번_커트라인_풀이

2024. 4. 30. 22:13코드리뷰

728x90
반응형

공부하는허딩크 : https://www.youtube.com/live/wAItg8urY5U?feature=shared

sort()의 내림차순만 알고 있으면 비교적 쉬운 문제이다.

import sys
input = sys.stdin.readline

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

score.sort(reverse=True)

print(score[k - 1])

 

728x90
반응형