https://www.acmicpc.net/problem/25305
풀이
# 25305번 커트라인
n, k = map(int, input().split())
scores = list(map(int, input().split()))
scores.sort(reverse =True)
print(scores[k-1])
출력결과
'백준 > 구현' 카테고리의 다른 글
[백준][Python] 10250번 ACM호텔 - 코팩 (1) | 2022.09.20 |
---|---|
[백준][Python] 10797번 10부제 - 코팩 (0) | 2022.09.20 |
[백준][Python] 1213번 팰린드롬 만들기 - 코팩 (0) | 2022.09.06 |
[백준][Python] 3062번 수 뒤집기 - 코팩 (0) | 2022.09.05 |
[백준][Python] 10820번 문자열 분석 - 코팩 (0) | 2022.09.03 |