https://www.codetree.ai/missions/5/problems/pair-parentheses-3/description
import sys
input = sys.stdin.readline
string = list(input().rstrip())
cnt = 0
for i in range(len(string)):
if string[i] == ')':
continue
for j in range(i+1, len(string)):
if string[j] == ")":
cnt += 1
print(cnt)
728x90
반응형
'🔻PS > Codetree' 카테고리의 다른 글
[Codetree] 최고의 13위치 Python (0) | 2024.08.05 |
---|---|
[Codetree] 일렬로 서있는 소 2 Python (0) | 2024.08.04 |
[Codetree] 모이자 Python (0) | 2024.08.04 |
[Codetree] 이동경로상에 있는 모든 숫자 더하기 Python (0) | 2024.07.31 |
[Codetree] 최소공배수 구하기 Python (0) | 2024.07.30 |