지나가던 개발자
[Python] 백준 2693번(N번째 큰 수) 문제 풀이 본문
for i in range(int(input())):
print(sorted(list(map(int, input().split(" "))), reverse=True)[2])
'PS > Python' 카테고리의 다른 글
[Python] 백준 8611번(팰린드롬 숫자) 문제 풀이 (0) | 2022.10.20 |
---|---|
[Python] 백준 10815번(숫자 카드) 문제 풀이 (0) | 2022.10.19 |
[Python] 백준 8595번(히든 넘버) 문제 풀이 (0) | 2022.10.19 |
[Python] 백준 2145번(숫자 놀이) 문제 풀이 (0) | 2022.10.18 |
[Python] 백준 8958번(OX퀴즈) 문제 풀이 (0) | 2022.10.18 |
Comments