지나가던 개발자

[Python] 백준 17263번(Sort 마스터 배지훈) 문제 풀이 본문

PS/Python

[Python] 백준 17263번(Sort 마스터 배지훈) 문제 풀이

KwonYongHyeon 2022. 2. 5. 14:19

 

input()
print(sorted(list(map(int, input().split())))[-1])

 

 N은 그냥 째끼고, A가 주어졌을 때 그를 정렬한 후 맨 마지막 요소를 출력한다.

Comments