[BOJ] 백준 10773 제로

태환·2024년 1월 27일
0

Coding Test

목록 보기
2/151

📌 [BOJ] 백준 10773 제로

📖 문제

📖 예제

📖 풀이

K = int(input())

stk = []
for _ in range(K):
  a = int(input())
  if a == 0:
    stk.pop()
  else:
    stk.append(a)

print(sum(stk))

스택 자료 구조의 FILOFirst In Last Out) 특성을 고려하면 쉽게 풀리는 문제이다.

profile
연세대학교 컴퓨터과학과 석사 과정

0개의 댓글