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
- MySQL
- 백준 16235
- 백준 17779
- 백준 17626
- java 기술면접
- 웹어플리케이션 서버
- spring security
- Coroutine
- 백준
- JVM
- 백준 16236
- java
- 백준 19238
- MSA
- spring oauth
- 백준 파이썬
- re.split
- sql 기술면접
- 프로래머스
- JPA
- 백준 16719
- 파이썬
- with recursive
- Spring
- springboot
- Kotlin
- 프로그래머스
- 백준 15685
- spring cloud
Archives
- Today
- Total
시작이 반
[백준] 9012번 (python 파이썬) 본문
SMALL
스택에 관련된 문제이다.
'('을 확인하면 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')
LIST
'알고리즘 > 백준' 카테고리의 다른 글
[백준] 1874번 (python 파이썬) (0) | 2021.03.04 |
---|---|
[백준] 4949번 (python 파이썬) (0) | 2021.03.04 |
[백준] 9375번 (python 파이썬) (0) | 2021.03.03 |
[백준] 2004번 (python 파이썬) (2) | 2021.03.03 |
[백준] 2981번 (python 파이썬) (0) | 2021.03.01 |