백준 _ 제로 _ 10773

코드

from collections import deque
n = int(input())
moneyList = deque()

for _ in range(n) :
    money = int(input())
    if money == 0 :
        moneyList.pop()
        continue
    moneyList.append(money)

if moneyList == [] :
    print(0)
else :
    print(sum(moneyList))

좋은 웹페이지 즐겨찾기