[백준][Python] 16435 스네이크 버드 : 구현 정렬해 작은 순으로 먹으면 되는 간단한 문제. import sys input = sys.stdin.readline N, L = map(int, input().split()) h_arr = list(map(int, input().split())) h_arr.sort() for h in h_arr: if L >= h: L += 1 continue break print(L) practivceAlgorithm/백준 2021.09.17