Cometin'

BOJ-11004 - Python

2020-12-21 at Algorithm category

입력되는 수열을 올림차순으로 정렬하여 k번째 수를 출력하는 문제. sorted 메소를 이용하여 정렬 후 인덱스를 출력하여 풀었다.

n, k = map(int, input().split())
l = sorted(map(int, input().split()))
print(l[k-1])

hyesungoh

Personal blog by hyesungoh.

I like to share my knowledge for those who wandering in issue.