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 Boot
- 백준 16236
- 파이썬
- with recursive
- MSA
- Kotlin
- 백준 17626
- Spring
- MySQL
- 백준 15685
- JPA
- java 기술면접
- spring cloud
- re.split
- 백준 17779
- 백준 19238
- 백준
- spring security
- java
- 백준 16235
- JVM
- 백준 16719
- springboot
- spring oauth
- 프로래머스
- 백준 파이썬
- 웹어플리케이션 서버
- sql 기술면접
- Coroutine
Archives
- Today
- Total
목록백준1874 (1)
시작이 반
[백준] 1874번 (python 파이썬)
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] ..
알고리즘/백준
2021. 3. 4. 21:10