문제
처음 작성한 코드
import sys
n = int(sys.stdin.readline())
stack = []
for i in range(n):
tmp = sys.stdin.readline().split()
if tmp[0] == "push":
stack.append(tmp[1])
elif tmp[0] == "pop":
print(stack.pop()) if stack else print(-1)
elif tmp[0] == "size":
print(len(stack))
elif tmp[0] == "empty":
print(0) if stack else print(1)
elif tmp[0] == "top":
print(stack[-1]) if stack else print(-1)
'Baekjoon' 카테고리의 다른 글
[백준 17298] 오큰수 (0) | 2021.02.14 |
---|---|
[백준 4949] 균형잡힌 세상 (0) | 2021.02.14 |
[백준 10845] 큐 (0) | 2021.02.12 |
[백준 10773] 제로 (0) | 2021.02.12 |
[백준 9012] 괄호 (0) | 2020.10.16 |