結果

問題 No.2031 Colored Brackets
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-08-06 00:39:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 256 ms / 2,000 ms
コード長 482 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 136,192 KB
最終ジャッジ日時 2024-09-15 22:32:51
合計ジャッジ時間 5,455 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 50 ms
60,032 KB
testcase_04 AC 119 ms
90,752 KB
testcase_05 AC 76 ms
70,272 KB
testcase_06 AC 103 ms
88,576 KB
testcase_07 AC 47 ms
57,984 KB
testcase_08 AC 163 ms
112,128 KB
testcase_09 AC 185 ms
113,408 KB
testcase_10 AC 227 ms
135,680 KB
testcase_11 AC 182 ms
113,408 KB
testcase_12 AC 236 ms
136,064 KB
testcase_13 AC 137 ms
91,008 KB
testcase_14 AC 240 ms
136,192 KB
testcase_15 AC 240 ms
135,936 KB
testcase_16 AC 241 ms
135,680 KB
testcase_17 AC 256 ms
136,064 KB
testcase_18 AC 225 ms
136,064 KB
testcase_19 AC 206 ms
132,992 KB
testcase_20 AC 156 ms
111,744 KB
testcase_21 AC 159 ms
113,408 KB
testcase_22 AC 164 ms
113,024 KB
testcase_23 AC 220 ms
135,936 KB
testcase_24 AC 41 ms
51,968 KB
testcase_25 AC 41 ms
51,712 KB
testcase_26 AC 41 ms
52,096 KB
testcase_27 AC 46 ms
58,368 KB
testcase_28 AC 41 ms
51,968 KB
testcase_29 AC 40 ms
51,456 KB
testcase_30 AC 40 ms
52,096 KB
testcase_31 AC 55 ms
61,312 KB
testcase_32 AC 40 ms
51,840 KB
testcase_33 AC 55 ms
61,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


n=int(input())
mod=998244353
s=[0]+list(input())
for i in range(1,n+1):
    if s[i]=="(":s[i]=1
    else:s[i]=-1

wa=[0]*(n+1)
for i in range(1,n+1):
    wa[i]=wa[i-1]+s[i]
dp=[[0]*(n+10) for i in range(n+3)]
dp[0][0]=1
for i in range(n):
    for red in range(n+1):
        dp[i][red]%=mod
        res=dp[i][red]
        blue=wa[i]-red
        if blue<0:continue
        if red+s[i+1]>=0:dp[i+1][red+s[i+1]]+=res
        if blue+s[i+1]>=0:dp[i+1][red]+=res


print(dp[n][0]%mod)

0