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 |
Tags
- ChatGPT
- programmers
- 코로나19
- dacon
- 맥북
- AI 경진대회
- SW Expert Academy
- leetcode
- 프로그래머스
- 우분투
- ubuntu
- 자연어처리
- gs25
- Real or Not? NLP with Disaster Tweets
- 편스토랑 우승상품
- 파이썬
- 금융문자분석경진대회
- Docker
- 편스토랑
- github
- Kaggle
- Git
- 더현대서울 맛집
- 데이콘
- 프로그래머스 파이썬
- 백준
- Baekjoon
- PYTHON
- hackerrank
- 캐치카페
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