문제 링크
https://www.acmicpc.net/problem/10828
문제
문제 풀이
import sys
input = sys.stdin.readline
stack = []
n = int(input())
for i in range(n):
command = input().split()
if command[0] == 'push':
stack.append(command[1])
elif command[0] == 'pop':
if len(stack) == 0:
print(-1)
else:
print(stack.pop())
elif command[0] == 'size':
print(len(stack))
elif command[0] == 'empty':
if len(stack) == 0:
print(1)
else:
print(0)
elif command[0] == 'top':
if len(stack) == 0:
print(-1)
else:
print(stack[-1])
'Algorithm > BOJ' 카테고리의 다른 글
[백준] 10799 쇠막대기 (파이썬 python) (0) | 2022.01.23 |
---|---|
[백준] 9012 괄호 (파이썬 python) (0) | 2022.01.23 |
[백준] 11004 K번째 수 (파이썬 python) (0) | 2022.01.21 |
[백준] 11053 가장 긴 증가하는 부분 수열 (파이썬 python) (0) | 2022.01.21 |
[백준] 11652 카드 (파이썬 python) (0) | 2022.01.21 |