본문 바로가기
Python/백준

백준 - 11004 K번째 수

by sophia02 2022. 10. 21.
n, k = map(int, input().split())
a = list(map(int, input().split()))
a.sort()
print(a[k-1])

'Python > 백준' 카테고리의 다른 글

백준 - 5532 방학숙제  (0) 2022.10.23
백준 - 111728 배열 합치기  (0) 2022.10.22
백준 - 2839  (0) 2022.10.19
백준 - 3053 택시 기하학  (0) 2022.10.18
백준 - 2748 피보나치 수 2  (1) 2022.10.13