728x90
반응형
1. 유형: 스택
2. 문제
3. 풀이
기본적인 스택 연산 구현 연습
import sys
K = int(sys.stdin.readline())
stck = []
for i in range(K):
n = int(sys.stdin.readline())
if n == 0:
if stck: stck.pop()
else: continue
else:
stck.append(n)
print(sum(stck))
728x90
반응형
'코딩테스트 > BAEKJOON' 카테고리의 다른 글
[백준/Python] 1764. 듣보잡 (0) | 2024.11.18 |
---|---|
[백준/Python] 9012. 괄호 (1) | 2024.11.05 |
[백준/ Python] 28278. 스택2 (3) | 2024.11.05 |
[백준/Python] 1449번. 수리공 항승 (0) | 2024.10.26 |
[백준/Python] 3085. 사탕게임 (1) | 2024.10.26 |