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
|
import sys
from collections import deque
n = int(input())
que = deque()
for i in range(n):
command = list(map(str,sys.stdin.readline().split()))
if command[0] == "push":
que.append(command[1])
elif command[0] == "pop":
if not que:
print(-1)
else:
print(que.pop())
elif command[0] == "size":
print(len(que))
elif command[0] == "empty":
if not que:
print(1)
else:
print(0)
elif command[0] == "top":
if not que:
print(-1)
else:
print(que[-1])
|
cs |
'백준' 카테고리의 다른 글
백준 11659번: 구간 합 구하기 4 (0) | 2023.01.19 |
---|---|
백준 1260번: DFS와 BFS (0) | 2021.10.13 |
백준 10845번: 큐 (0) | 2021.09.30 |
백준 10866번: 덱 (0) | 2021.09.30 |
백준 1920번: 수 찾기 (0) | 2021.09.29 |