[백준/파이썬] 25305번

민정·2023년 1월 5일
0

[백준/파이썬]

목록 보기
13/245
post-thumbnail

백준 25305번

문제

https://www.acmicpc.net/problem/25305

나의 풀이

원래는 정렬을 사용하여 풀려고 했으나, 파이썬은 sort로 정렬이 가능합니다. score[b-1]인 이유는 인덱스는 0부터 시작하기 때문입니다.

코드

a, b = map(int, input().split())

score = list(map(int, input().split()))

score.sort(reverse=True)


print(score[b-1])

새로 알게된 점

오름차순 정렬 - 리스트이름.sort()
내림차순 정렬 - 리스트이름.sort(reverse = True)

profile
パㅔバ6ㅇr 덤벼ㄹΓ :-0

0개의 댓글