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
- 파이썬
- 백준 17779
- MySQL
- with recursive
- JVM
- 백준
- spring oauth
- MSA
- Spring Boot
- Spring
- Kotlin
- java
- 백준 19238
- 백준 파이썬
- re.split
- sql 기술면접
- 웹어플리케이션 서버
- spring security
- spring cloud
- Coroutine
- 프로래머스
- 백준 15685
- 프로그래머스
- springboot
- 백준 16235
- java 기술면접
- 백준 17626
- JPA
- 백준 16236
- 백준 16719
Archives
- Today
- Total
목록백준 9012 (1)
시작이 반
[백준] 9012번 (python 파이썬)
스택에 관련된 문제이다. '('을 확인하면 stack에 쌓고 ')'을 확인하면 stack에서 pop한다. t = int(input()) for _ in range(t): ps = list(input()) stack = list() is_empty = False for i in range(len(ps)): if ps[i] == '(': stack.append(ps[i]) else: if not stack: is_empty = True break else: stack.pop() if not stack and not is_empty: print('YES') else: print('NO')
알고리즘/백준
2021. 3. 4. 16:04