Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- PYTHON
- Real or Not? NLP with Disaster Tweets
- 편스토랑
- 편스토랑 우승상품
- 더현대서울 맛집
- SW Expert Academy
- AI 경진대회
- 맥북
- hackerrank
- programmers
- github
- 프로그래머스
- Git
- Docker
- gs25
- Kaggle
- ChatGPT
- 데이콘
- 파이썬
- 캐치카페
- leetcode
- ubuntu
- 프로그래머스 파이썬
- Baekjoon
- 우분투
- dacon
- 코로나19
- 백준
- 자연어처리
- 금융문자분석경진대회
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 10845 : 큐 (Python) 본문
728x90
반응형
1일 1문제! 98일차!
오늘의 문제는 백준의 큐 입니다.
Solution
my_queue = []
command_list = []
num = input()
for i in range(int(num)):
command = input()
command_list.append(command)
for command in command_list:
cmd = command.split()
if cmd[0] == 'push':
my_queue.append(cmd[1])
elif cmd[0] == 'pop':
if len(my_queue) != 0:
print(my_queue.pop(0))
else:
print(-1)
elif cmd[0] == 'back':
if len(my_queue) != 0:
print(my_queue[-1])
else:
print(-1)
elif cmd[0] == 'front':
if len(my_queue) != 0:
print(my_queue[0])
else:
print(-1)
elif cmd[0] == 'size':
print(len(my_queue))
elif cmd[0] == 'empty':
if len(my_queue) != 0:
print(0)
else:
print(1)
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 2579번 : 계단 오르기 (Python) (2) | 2020.05.16 |
---|---|
[BaekJoon] 10820번 : 문자열 분석 (Python) (2) | 2020.05.15 |
[leetCode] 6. ZigZag Conversion (Python) (0) | 2020.05.13 |
[BaekJoon] 1764번 : 듣보잡 (Python) (0) | 2020.05.12 |
[leetCode] 3. Longest Substring Without Repeating Characters (Python) (0) | 2020.05.11 |
Comments