728x90
https://www.acmicpc.net/problem/10773
import sys
input = sys.stdin.readline
K = int(input())
num = list()
for i in range(K):
M = int(input())
if M == 0:
num.pop()
else:
num.append(M)
print(sum(num))
728x90
'Study > Coding Test' 카테고리의 다른 글
[백준] 1912 - 연속합 Python (0) | 2023.10.09 |
---|---|
[백준] 7576 - 토마토 Python (1) | 2023.10.09 |
[백준] 2346 - 풍선 터뜨리기 Python (0) | 2023.10.09 |
[프로그래머스] 구명보트 Python (0) | 2023.09.28 |
[백준] 1431 - 시리얼 번호 Python (0) | 2023.08.14 |