728x90
https://www.acmicpc.net/problem/10828
import sys
n = int(input())
result = []
stack = []
for i in range(n):
s = sys.stdin.readline().strip()
if s[0] == "p":
if s[:4] == "push":
stack.append(s[5:])
elif s[:3] == "pop":
if len(stack) > 0:
print(stack.pop())
else:
print(-1)
elif s[0] == "s":
print(len(stack))
elif s[0] == "e":
if len(stack) == 0:
print(1)
else:
print(0)
elif s[0] == "t":
if len(stack) > 0:
print(stack[-1])
else:
print(-1)
반응형
'전.py' 카테고리의 다른 글
[python] 프로그래머스 폰켓몬 (Lv.1) (0) | 2022.01.26 |
---|---|
[python] 백준 1105 팔 (0) | 2022.01.25 |
[python] 백준 10845 큐 (0) | 2022.01.24 |
[python] 백준 10866 덱 (0) | 2022.01.24 |
[python] 백준 11866 요세푸스 문제 0 (0) | 2022.01.24 |