Skip to content

Commit 01fbfbb

Browse files
committed
[BOJ] 11004. K번째 수 / 실버5 / 5분 / 성공
1 parent f04b019 commit 01fbfbb

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import sys
2+
input = sys.stdin.readline
3+
4+
N, K = map(int, input().split())
5+
li = list(map(int, input().split()))
6+
li.sort()
7+
print(li[K-1])

0 commit comments

Comments
 (0)