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
- 야근지수
- Special String Again
- python
- 매칭점수
- 격파르타 장점
- 프로그래머스
- 격파르타 후기
- Algorithm
- 파이썬
- Reverse Shuffle Merge
- 격파르타 합격후기
- Recursion: Davis' Staircase
- 머신러닝
- 코딩테스트
- Interview Preparation Kit
- candies
- 구슬탈출2
- [sqld]자격증합격
- programmers
- BFS: Shortest Reach in a Graph
- Common Child
- hackerrank
- 알고리즘
- 해커랭크
- Roads and Libraries
- 백준
- Find the nearest clone
- DFS: Connected Cell in a Grid
- 피보나치 함수
- Max Array Sum
Archives
- Today
- Total
Archive
[BOJ] 10828. 스택 본문
풀이
- 경우에 맞게 구현
n = int(input())
stack = []
ans = []
for _ in range(n):
input_order = input().split(' ')
if input_order[0] == 'push':
stack.insert(0, input_order[1])
elif input_order[0] == 'pop':
if len(stack):
ans.append(stack.pop(0))
else:
ans.append(-1)
elif input_order[0] == 'size':
ans.append(len(stack))
elif input_order[0] == 'empty':
if len(stack):
ans.append(0)
else:
ans.append(1)
elif input_order[0] == 'top':
if len(stack):
ans.append(stack[0])
else:
ans.append(-1)
for a in ans:
print(a)
'공부 > Algorithm' 카테고리의 다른 글
[BOJ] 스택수열 (0) | 2021.01.24 |
---|---|
[BOJ] 9012 괄호 (0) | 2021.01.24 |
[BOJ] 9093. 단어 뒤집기 (0) | 2021.01.16 |
[Programmers] [Level3] 매칭 점수 (0) | 2020.09.10 |
[Hackerrank] [Medium] Find the nearest clone (0) | 2020.09.04 |
Comments