728x90
반응형
구현 언어: 파이썬
import sys
input = sys.stdin.readline
n = int(input())
queue = []
for i in range(n):
command = list(input().split())
if command[0] == 'push':
queue.append(int(command[1]))
elif command[0] == 'pop':
if queue:
print(queue.pop(0))
else:
print(-1)
elif command[0] == 'size':
print(len(queue))
elif command[0] == 'empty':
if queue:
print(0)
else:
print(1)
elif command[0] == 'front':
if queue:
print(queue[0])
else:
print(-1)
elif command[0] == 'back':
if queue:
print(queue[-1])
else:
print(-1)
시도 횟수: 1
구현 포인트:
728x90
반응형
'Archive > BOJ' 카테고리의 다른 글
백준 9012번: 괄호 (0) | 2021.02.14 |
---|---|
백준 10866번: 덱 (0) | 2021.02.14 |
백준 10828번: 스택 (0) | 2021.02.14 |
백준 11866번: 요세푸스 문제 0 (0) | 2021.02.14 |
백준 10989번: 수 정렬하기 3 (실패) (0) | 2021.02.08 |