K = int(input())
stack = []
for k in range(K):
num = int(input())
if num == 0:
del stack[-1]
else:
stack.append(num)
print(sum(stack))
'Programming > Algorithm' 카테고리의 다른 글
백준 #17298 - 오큰수 python (0) | 2019.10.19 |
---|---|
백준 #4949 - 균형잡힌 세상 C++ (0) | 2019.10.19 |
백준 #10828 - 스택 python (0) | 2019.10.19 |
백준 #4344 - 평균은 넘겠지 python (0) | 2019.02.12 |
백준 #1152 - 단어의 개수 python (0) | 2019.02.12 |