1
2
3
4
5
6
7
8
9
|
n = int(input())
for i in range(n):
w = input()
for j in w:
w = w.replace("()","")
if len(w)>0:
print("NO")
else:
print("YES")
|
cs |
'백준' 카테고리의 다른 글
백준 2108번: 통계학 (0) | 2021.05.18 |
---|---|
백준 2667번: 단지번호붙이기 (0) | 2021.05.16 |
백준 1978번: 소수 찾기 (0) | 2021.05.07 |
백준 1929번: 소수 구하기 (0) | 2021.05.07 |
백준 2751번: 수 정렬하기 2 (0) | 2021.05.07 |