-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")
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 32314번 Christmas Tree Adapter (0) | 2024.09.17 |
---|---|
[백준/파이썬] 9161번 Sir Bedavere’s Bogus Division Solutions (0) | 2024.09.15 |
[백준/파이썬] 32184번 디미고에 가고 싶어! (0) | 2024.09.13 |
[백준/파이썬] 24807번 Math Homework (0) | 2024.09.12 |
[백준/파이썬] 13366번 Math Contest (0) | 2024.09.11 |