Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- spring oauth
- sql 기술면접
- Spring
- 프로그래머스
- Kotlin
- with recursive
- 프로래머스
- springboot
- Coroutine
- 백준 16719
- 백준 17626
- 백준 19238
- 백준 17779
- 백준 16235
- 백준
- 백준 16236
- Spring Boot
- JPA
- MySQL
- 백준 파이썬
- 웹어플리케이션 서버
- re.split
- JVM
- 파이썬
- java
- 백준 15685
- java 기술면접
- MSA
- spring cloud
- spring security
Archives
- Today
- Total
시작이 반
[백준] 1874번 (python 파이썬) 본문
SMALL
n까지의 숫자가 주어졌을때 1 ~ n을 스택에 push하고 언제 pop할 것인지 정하면된다.
ex)
입력
n = 8
list = 4 3 6 8 7 5 2 1
일때
1 ~ 8까지 스택에 차례로 push를 하면서 스택의 top과 list[j]의 숫자가 같다면 pop을 하고 j 를 1증가시킨다.
import sys
input = sys.stdin.readline
n = int(input())
input_number = list(int(input()) for _ in range(n))
stack = list()
result = list()
j = 0
for i in range(1, n+1):
stack.append(i)
result.append('+')
while stack and input_number[j] == stack[-1]:
stack.pop()
result.append('-')
j += 1
if stack:
print('NO')
else:
for i in range(len(result)):
print(result[i])
LIST
'알고리즘 > 백준' 카테고리의 다른 글
[백준] 2630번 (python 파이썬) (0) | 2021.03.06 |
---|---|
[백준] 1021번 (python 파이썬) (0) | 2021.03.04 |
[백준] 4949번 (python 파이썬) (0) | 2021.03.04 |
[백준] 9012번 (python 파이썬) (0) | 2021.03.04 |
[백준] 9375번 (python 파이썬) (0) | 2021.03.03 |