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

[백준/파이썬] 13063번 Lobby

by 현장 2024. 7. 17.

-Code

while True:
    n, m, k = map(int, input().split())

    if n == m == k == 0:
        break

    other = n - m - k
    half = n // 2 + 1
    if half - m > other:
        print(-1)
    else:
        print(max(half - m, 0))