鉄棒
2647 ワード
作成日:2022年1月24日午後5:23
インプリメンテーションコード
# 쇠막대기
import sys
#sys.stdin = open("input2.txt", "rt")
word = input()
stick = []
for x in word:
stick.append(x)
last = ""
res = 0
numberOfStick = 0
for x in stick:
if x == '(':
numberOfStick += 1
last = x
else:
if last + x == "()":
numberOfStick -= 1
res += numberOfStick
last = x
elif last + x == "))":
res += 1
numberOfStick -= 1
last = x
print(res)
Reference
この問題について(鉄棒), 我々は、より多くの情報をここで見つけました https://velog.io/@lsj8706/쇠막대기テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol