728x90
import sys
n, k = map(int, sys.stdin.readline().split())
number = list(map(int, sys.stdin.readline().split()))
number.sort()
print(number[k-1])
728x90
'[Coding Test] > [백준]' 카테고리의 다른 글
[백준] 10867 파이썬(python) : 중복 빼고 정렬하기 - (★) (0) | 2022.09.05 |
---|---|
[백준] 1743 파이썬(python) : 음식물 피하기 (0) | 2022.09.03 |
[백준] 10987 파이썬(python) : 모음의 개수 (0) | 2022.08.31 |
[백준] 25305 파이썬(python) : 커트라인 (0) | 2022.08.30 |
[백준] 10102 파이썬(python) : 개표 (0) | 2022.08.30 |