結果

問題 No.2031 Colored Brackets
ユーザー vwxyzvwxyz
提出日時 2024-12-19 15:22:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 493 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 76,060 KB
最終ジャッジ日時 2024-12-19 15:22:32
合計ジャッジ時間 3,482 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,220 KB
testcase_01 AC 36 ms
52,328 KB
testcase_02 AC 37 ms
53,140 KB
testcase_03 AC 41 ms
53,744 KB
testcase_04 AC 63 ms
67,436 KB
testcase_05 AC 57 ms
66,612 KB
testcase_06 AC 58 ms
66,424 KB
testcase_07 AC 39 ms
53,068 KB
testcase_08 AC 64 ms
69,912 KB
testcase_09 AC 65 ms
70,628 KB
testcase_10 AC 74 ms
73,208 KB
testcase_11 AC 73 ms
72,476 KB
testcase_12 AC 71 ms
74,372 KB
testcase_13 AC 62 ms
68,684 KB
testcase_14 AC 70 ms
73,820 KB
testcase_15 AC 72 ms
74,756 KB
testcase_16 AC 71 ms
73,448 KB
testcase_17 AC 83 ms
76,060 KB
testcase_18 AC 57 ms
64,640 KB
testcase_19 AC 57 ms
65,628 KB
testcase_20 AC 53 ms
63,412 KB
testcase_21 AC 58 ms
65,220 KB
testcase_22 AC 59 ms
66,628 KB
testcase_23 AC 55 ms
64,420 KB
testcase_24 AC 40 ms
52,744 KB
testcase_25 AC 38 ms
53,744 KB
testcase_26 AC 40 ms
52,572 KB
testcase_27 AC 43 ms
53,072 KB
testcase_28 AC 38 ms
53,756 KB
testcase_29 AC 39 ms
53,240 KB
testcase_30 AC 35 ms
52,748 KB
testcase_31 AC 46 ms
63,016 KB
testcase_32 AC 40 ms
51,824 KB
testcase_33 AC 48 ms
61,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=input()
mod=998244353
cnt=0
dp=[1]
for s in S:
    prev=dp
    prev_cnt=cnt
    cnt=prev_cnt+(s=="(")*2-1
    dp=[0]*(cnt+1)
    for c in range(prev_cnt+1):
        if s=="(":
            dp[c+1]+=prev[c]
            dp[c+1]%=mod
            dp[c]+=prev[c]
            dp[c]%=mod
        else:
            if c:
                dp[c-1]+=prev[c]
                dp[c-1]%=mod
            if c<cnt+1:
                dp[c]+=prev[c]
                dp[c]%=mod
ans=dp[0]
print(ans)
0