본문 바로가기
python-algorithm

백준 2693 N번째 큰 수

by 무적김두칠 2021. 12. 6.

1
2
3
4
5
n=int(input())
for i in range(n):
    tmp=list(map(int,input().split()))
    tmp=sorted(tmp,reverse=True)
    print(tmp[2])
cs

 

반응형

'python-algorithm' 카테고리의 다른 글

백준 5635 생일  (0) 2021.12.06
백준 2822 점수 계산  (0) 2021.12.06
백준 2417 정수 제곱근  (0) 2021.12.06
백준 1789 수들의 합  (0) 2021.12.06
백준 1769 3의 배수  (0) 2021.12.06

댓글