보안을 그리다, 훈이

[Baekjoon/Python3] 10828번 스택 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 10828번 스택

HooNeee 2020. 12. 8. 21:57

[Baekjoon/Python3] 10828번 스택

 

www.acmicpc.net/problem/10828

 

10828번: 스택

첫째 줄에 주어지는 명령의 수 N (1 ≤ N ≤ 10,000)이 주어진다. 둘째 줄부터 N개의 줄에는 명령이 하나씩 주어진다. 주어지는 정수는 1보다 크거나 같고, 100,000보다 작거나 같다. 문제에 나와있지

www.acmicpc.net

 

# LIFO
import sys
n = int(sys.stdin.readline())
stack = []
for i in range(n):
    s = sys.stdin.readline().split()
    if 'push' in s:
        stack.append(s[1])
    elif 'pop' in s:
        print(stack.pop() if stack else -1)
    elif 'size' in s:
        print(len(stack))
    elif 'empty' in s:
        print(0 if stack else 1)
    elif 'top' in s:
        print(stack[-1] if stack else -1)
Comments