sorted 내장 함수를 사용하면 쉽게 풀린다.
import sys
input = sys.stdin.readline
lists = list(map(int, input().split()))
lists = sorted(lists, reverse=True)
print(lists[1])
728x90
반응형
'Algorithm > 백준' 카테고리의 다른 글
백준 4344 - 평균은 넘겠지 파이썬 (0) | 2021.03.23 |
---|---|
백준 2577- 숫자의 개수 python (0) | 2021.03.22 |
백준 10818 - 최소, 최대 python (구현) (0) | 2021.03.19 |
백준 10699 - 파이썬 (0) | 2021.03.18 |
백준 15552 - 빠른 A + B (0) | 2021.03.18 |