Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Algospot
- greedy
- php
- 인프런
- 따배씨
- DP
- BOJ
- 종만북
- web
- Cleancode
- Python
- programmers
- Algorithm
- BFS
- server
- sorting
- 따라하면서 배우는 C언어
- BASIC
- 백준
- C
- graph
- Math
- 생활코딩
- 따라하며 배우는 C언어
- JavaScript
- udemy
- C언어
- dfs
- String
- 정수론
Archives
- Today
- Total
몽상실현개발주의
[BOJ] 10828 / 스택 / Python 파이썬 본문
[BOJ] 10828 / 스택 / Python 파이썬
https://www.acmicpc.net/problem/10828
풀이
Stack 을 구현하는 문제이다.
Python 의 List 를 활용하면 된다.
import sys
N = int(sys.stdin.readline())
stack = []
for _ in range(N):
order = sys.stdin.readline().split()
if order[0] == 'push':
stack.append(int(order[1]))
elif order[0] == 'pop':
if stack:
print(stack.pop())
else:
print(-1)
elif order[0] == 'size':
print(len(stack))
elif order[0] == 'empty':
if stack:
print(0)
else:
print(1)
elif order[0] == 'top':
if stack:
print(stack[-1])
else:
print(-1)
'Algorithm PS > BOJ' 카테고리의 다른 글
[BOJ] 10799 / 쇠막대기 / Python 파이썬 (0) | 2021.05.24 |
---|---|
[BOJ] 9012 / 괄호 / Python 파이썬 (0) | 2021.05.24 |
[BOJ] 11004 / K 번째 수 / Python 파이썬 (0) | 2021.05.23 |
[BOJ] 11652 / 카드 / Python 파이썬 (0) | 2021.05.23 |
[BOJ] 10989 / 수 정렬하기 3 / Python 파이썬 (0) | 2021.05.21 |
Comments