DHistory
[Baekjoon] Sort - 11004 K 번째 수 본문
문제
풀이
import sys
n, k = map(int, sys.stdin.readline().rstrip().split())
numbers = list(map(int, sys.stdin.readline().rstrip().split()))[:n]
def solution(numbers, k):
return sorted(numbers)[k - 1]
print(solution(numbers, k))
채점 결과
'Computer Science > Algorithm' 카테고리의 다른 글
[Baekjoon] Sort - 8979 올림픽 (0) | 2023.09.08 |
---|---|
[Baekjoon] 11728 - 배열 합치기 (0) | 2023.09.08 |
[Baekjoon] Sort - 10815 숫자 카드 (0) | 2023.09.08 |
[Baekjoon] Sort - 나이순 정렬 (0) | 2023.09.08 |
[Baekjoon] Sort - 11650 좌표 정렬하기 (0) | 2023.09.08 |