import sys
input = sys.stdin.readline
n, k = map(int,input().split())
array = sorted(list(map(int,input().split())))
print(array[n-k])
'Algorithm 💡 > Sorting' 카테고리의 다른 글
[프로그래머스] 최솟값 만들기 (1) | 2024.01.05 |
---|---|
[백준 2108번] 통계학 (0) | 2023.02.24 |
[백준 2587번] 대표값2 (0) | 2023.02.24 |
[백준 18870번] 좌표 압축 (0) | 2023.02.23 |
[백준 1764번] 듣보잡 ( + input과 sys.stdin.readline의 차이점) (0) | 2023.02.23 |