취준시절/백준

[백준 10773] 제로 - Ptyhon

MAYMIN 2021. 7. 9. 01:07
728x90
SMALL
k = int(input())
stack = list()
for _ in range(k):
    num = int(input())
    if num != 0:
        stack.append(num)
    else:
        stack.pop()
print(sum(stack))
728x90
LIST