Notice
Recent Posts
Recent Comments
Link
DevKim
[Python] 백준 #3345 괄호 본문
728x90
n=int(input())
cnt1=0 #(
cnt2=0 #)
for i in range(n):
cnt1=0
cnt2=0
p=input()
for j in p:
if j=='(':
cnt1+=1
elif j==')':
cnt2+=1
if cnt1<cnt2: ##닫기 괄호가 열기보다 많아지면 중단
cnt=-1
break
if cnt1==cnt2:
print('YES')
else:
print('NO')
728x90
'알고리즘 PS' 카테고리의 다른 글
[Python] 백준 #10845 큐 (0) | 2021.01.14 |
---|---|
[Python] 백준 #10799 쇠막대기 (0) | 2021.01.14 |
[Python] 백준 #10828 스택 (0) | 2021.01.14 |
[Python] 백준 #10989 수 정렬하기3 (0) | 2021.01.14 |
[Python] 백준 #10814 나이순 정렬 (0) | 2021.01.14 |
Comments