n = int(input())
for i in range(n):
a = input()
s = 0
for j in a:
if j == '(':
s += 1
elif j == ')':
s -= 1
if s < 0:
print('NO')
break
if s > 0:
print('NO')
elif s == 0:
print('YES')
'코딩테스트 > 백준' 카테고리의 다른 글
백준 11718번 그대로 출력하기 python 파이썬 (0) | 2022.10.07 |
---|---|
백준 2941번 크로아티아 알파벳 python 파이썬 (0) | 2022.10.07 |
백준 1316번 그룹 단어 체커 python 파이썬 (0) | 2022.10.07 |
백준 1157번 단어 공부 python 파이썬 (0) | 2022.10.07 |
백준 2675번 문자열 반복 python 파이썬 (0) | 2022.10.07 |