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

[백준/파이썬] 32209번 다음 달에 봐요

by 현장 2024. 9. 14.

-Code

res = 0
flag = True
for _ in range(int(input())):
    n, xy = map(int, input().split())
    res += xy if n == 1 else -xy

    if res < 0:
        flag = False

print("See you next month" if flag else "Adios")