목차

K번째 수

ps
링크acmicpc.net/…
출처BOJ
문제 번호11004
문제명K번째 수
레벨실버 5
분류

선택 알고리즘

시간복잡도O(n)
인풋사이즈n<=5,000,000
사용한 언어Python
제출기록623580KB / 2848ms
최고기록3692ms
해결날짜2020/12/21

풀이

코드

"""Solution code for "BOJ 11004. K번째 수".

- Problem link: https://www.acmicpc.net/problem/11004
- Solution link: http://www.teferi.net/ps/problems/boj/11004
"""


from teflib import algorithm


def main():
    N, K = [int(x) for x in input().split()]
    A = [int(x) for x in input().split()]
    print(algorithm.nth_element(A, K))


if __name__ == '__main__':
    main()