[Python] BOJ 10828번. 스택 작성일 2020-05-14 | In Algorithm | 10828번. 스택 문제 링크 https://www.acmicpc.net/problem/10828 풀이 코드 123456789101112131415161718192021222324252627282930# 10828번. 스택 # 시간초과 방지용 readline import sys input = sys.stdin.readline n = int(input()) stack = [] for i in range(n): s = input().strip() if s.split()[0] == 'push': stack.append(int(s.split()[1])) elif s == 'pop': if not stack: print(-1) else: print(stack.pop()) elif s == 'size': print(len(stack)) elif s == 'empty': if not stack: print(1) else: print(0) elif s == 'top': if not stack: print(-1) else: print(stack[-1]) 비고