728x90
반응형
단순 정렬 문제이다.
for _ in range(int(input())):
li = sorted(list(map(int, input().split())))
print(li[-3])
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 10610번 30(python) (0) | 2021.02.21 |
---|---|
백준 알고리즘 2947번 나무 조각(python) (0) | 2021.02.21 |
백준 알고리즘 13311번 행운의 편지(python) (0) | 2021.02.21 |
백준 알고리즘 9317번 Monitor DPI(python) (0) | 2021.02.20 |
백준 알고리즘 9325번 얼마?(python) (0) | 2021.02.20 |