#40528: 模仿類似的括號配對問題,這次居然AC


mountainwu14@gmail.com (吳小四)

學校 : 不指定學校
編號 : 187101
來源 : [123.193.136.130]
最後登入時間 :
2024-07-25 20:25:33
k621. [紅]括號匹配問題 | From: [122.121.31.212] | 發表日期 : 2024-05-27 17:31


word=input();stack=[]
    
           
for j in range(len(word)):
        #print("要加入",word[j])
        
    if  (word[j]!="") :
            #print("stack",stack)
        if (len(stack)!=0 and stack[-1]=="(" and word[j]==")" ):
                stack.pop()
                count+=1
        
        elif (len(stack)!=0 and stack[-1]=="[" and word[j]=="]" ):
                stack.pop()
                count+=1    
        else:
                stack.append(word[j])
            
        #print(stack,len(stack)) 
    
    #這樣子的寫法很神奇
if (len(stack)==0):
    print("Right")
else:
    print("Wrong")

 
ZeroJudge Forum