728x90
[ 문제 ]
https://www.acmicpc.net/problem/10828
[ 코드 ]
#시간초과 시 추가하면 좋은 구문
# https://www.acmicpc.net/board/view/44990
import sys
input=sys.stdin.readline
n = int(input()) #명령의 수
stack=[]
def push(x):
#리스트의 마지막에 추가
stack.append(x) #딱히 int(x)할 필요는 없을 듯
def pop():
if(len(stack)==0):
print(-1)
else:
print(stack.pop())
def size():
print(len(stack))
def empty():
if(len(stack)==0): #비면
print(1)
else: #안 비면
print(0)
def top():
if(len(stack)==0):
print(-1)
else:
print(stack[-1])
for i in range(n):
command=input().split() #push 1 같은 애들 분리
if(command[0] == 'push'):
push(command[1])
if (command[0] == 'pop'):
pop()
if (command[0] == 'size'):
size()
if (command[0] == 'empty'):
empty()
if (command[0] == 'top'):
top()
[ 결과 ]
반응형
'파이썬' 카테고리의 다른 글
[ Python ] 백준 11729 - 시간초과 해결!! (0) | 2021.06.06 |
---|---|
[ Python ] 백준 13300 파이썬 (0) | 2021.05.31 |
[ Python ] 백준 1735 파이썬 (0) | 2021.05.31 |
[ Python ] 백준 1475 파이썬 (0) | 2021.05.31 |
[ Python ] 백준 1453 파이썬 (0) | 2021.05.31 |