python-algorithm

[백준] 17263

무적김두칠 2021. 1. 18. 14:18

1
2
3
n=int(input())
tmp=sorted (list(map(int,input().split())))
print(tmp[n-1])
cs
반응형