import sys
num = int(sys.stdin.readline())
stack = []
for i in range(num):
order = sys.stdin.readline().strip()
if order.split()[0] == 'push':
stack.append(order.split()[1])
elif order == 'pop':
print(stack.pop() if stack else -1)
elif order == 'size':
print(len(stack))
elif order == 'empty':
print(0 if stack else 1)
elif order == 'top':
print(stack[-1] if stack else -1)
'코딩테스트 > 백준' 카테고리의 다른 글
백준 10866번 덱 python 파이썬 (0) | 2022.10.28 |
---|---|
백준 10845번 큐 python 파이썬 (0) | 2022.10.28 |
백준 11718번 그대로 출력하기 python 파이썬 (0) | 2022.10.07 |
백준 2941번 크로아티아 알파벳 python 파이썬 (0) | 2022.10.07 |
백준 9012번 괄호 python 파이썬 (0) | 2022.10.07 |