1. 문제
https://www.acmicpc.net/problem/10773
3. 풀이
아래와 같이 배열을 사용하여 간단하게 해결할 수 있는 문제입니다.
arr = []
total = int(input())
for _ in range(total):
this = int(input())
if this == 0:
arr.pop()
else:
arr.append(this)
print(sum(arr))
PREVIOUS[백준] 1003번 피보나치 함수 _ 문제 풀이