Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- SW Expert Academy
- Real or Not? NLP with Disaster Tweets
- PYTHON
- 편스토랑 우승상품
- Docker
- 자연어처리
- 데이콘
- 파이썬
- programmers
- 편스토랑
- 코로나19
- github
- gs25
- 프로그래머스 파이썬
- dacon
- ubuntu
- 맥북
- 금융문자분석경진대회
- leetcode
- AI 경진대회
- 백준
- Git
- ChatGPT
- Kaggle
- hackerrank
- 우분투
- 프로그래머스
- 더현대서울 맛집
- 캐치카페
- Baekjoon
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 9012번 : 괄호 (Python) 본문
728x90
반응형
1일 1문제! 91일차!
91일차의 문제는 백준의 괄호입니다.
Solution
case = int(input())
result = []
for i in range(case):
gwalhos = list(input())
mystack = []
double_break = True
for j in range(len(gwalhos)):
if gwalhos[j] == "(":
mystack.append(gwalhos[j])
else:
try:
if mystack.pop() == "(":
pass
except:
result.append("NO")
double_break = False
break
if len(mystack):
result.append("NO")
continue
if double_break:
result.append("YES")
for i in result:
print(i)
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 11655번 : ROT13 (Python) (0) | 2020.05.09 |
---|---|
[BaekJoon] 1406번 : 에디터 (Python) (0) | 2020.05.08 |
[BaekJoon] 9613번 : GCD 합 (Python) (0) | 2020.05.06 |
[BaekJoon] 10824번 : 네 수 (Python) (0) | 2020.05.05 |
[BaekJoon] 1629번 : 곱셈 (Python) (0) | 2020.05.04 |
Comments