알고리즘 & 코딩테스트

[백준] 10773번 제로

Haksae 2022. 3. 7. 17:40

⛏ 문제 파악

  • 불쌍한 재민이를 도와주는 문제
  • 특별한 것은 없다.

👉🏻  답안

import sys
K = int(sys.stdin.readline())

total = []
for _ in range(K):
  x = int(sys.stdin.readline())

  if x != 0:
    total.append(x)
  else:
    total.pop()

print(sum(total))