python-algorithm

백준 2693 N번째 큰 수

무적김두칠 2021. 12. 6. 11:42

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

 

반응형