본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬]16435번 스네이크버드

by 현장 2021. 9. 6.

-코드

n, l = map(int, input().split())
arr = sorted(list(map(int, input().split())))
for i in arr:
    if l >= i:
        l += 1
print(l)