[백준/Python] 25305번 : 커트라인

문제

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

풀이

import sys
input = sys.stdin.readline

# input
N, k = map(int, input().split())
ls = sorted([i for i in map(int, input().split())], reverse=True)

print(ls[k-1])