일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 파이썬
- 라즈비안
- 백준
- springboot3.x
- 2909
- nav-tab
- 트리
- 크롤링
- 16.04
- 2579
- Crawling
- node.js
- HTML
- raspberrypi
- Python
- NAV
- CSS
- 알고리즘
- ubuntu
- 라즈베리파이
- dynaminprogramming
- bootstrap
- Algorythm
- MongoDB
- baekjun
- dp
- 라즈베리파이3
- 13237
- 라즈베리파이3b+
- algotythm
Archives
- Today
- Total
노트
[백준] 12789번 도키도키 간식드리미 python 본문
n = int(input())
line = list(map(int,input().split()))
passed = []
stack = []
number = 1
while line:
temp = line.pop(0)
if temp==number:
passed.append(temp)
number+=1
else:
stack.insert(0,temp)
while stack:
num = stack.pop(0)
if len(stack)+1>=0 and num==number:
passed.append(num)
number+=1
else:
stack.insert(0,num)
break
if not stack:
print("Nice")
else:
print("Sad")
'알고리즘' 카테고리의 다른 글
[백준] 27962번 오렌지먹은지오랜지 python (0) | 2023.06.09 |
---|---|
[백준] 17952번 과제는 끝나지 않아! python (0) | 2023.06.01 |
[백준] 2941번 크로아티아 알파벳 python (0) | 2023.06.01 |
[백준] 1316번 그룹 단어 체커 python (0) | 2023.05.25 |
[백준] 1251번 단어 나누기 python (0) | 2023.05.18 |
Comments