https://www.acmicpc.net/problem/25305
1. 내가 작성한 코드
N,k = map(int,input().split())
x = list(map(int, input().split()))
x.sort(reverse=True)
print(x[k-1])
x.sort(reverse=True)를 이용해 내림차순으로 정리해주면 된다.
'🔅코딩테스트 공부🔅 > ❗백준' 카테고리의 다른 글
[백준] 10989번 수 정렬하기3(with python) (0) | 2023.01.13 |
---|---|
[백준] 2751번 수 정렬하기(with python) (0) | 2023.01.13 |
[백준] 2587번 대표값2(with python) (0) | 2023.01.13 |
[백준] 10872번 팩토리얼(with python) (0) | 2023.01.12 |
[백준] 2747번 피보나치 수(with python) (0) | 2023.01.11 |
댓글