practivceAlgorithm/백준

[백준][Python] 16435 스네이크 버드 : 구현

findTheValue 2021. 9. 17. 17:32

정렬해 작은 순으로 먹으면 되는 간단한 문제.

 

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)