結果

問題 No.2031 Colored Brackets
ユーザー wattaiheiwattaihei
提出日時 2022-08-05 23:24:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 486 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-09-15 21:00:36
合計ジャッジ時間 4,645 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 42 ms
51,712 KB
testcase_03 AC 49 ms
59,008 KB
testcase_04 AC 103 ms
75,904 KB
testcase_05 AC 79 ms
72,448 KB
testcase_06 AC 93 ms
75,520 KB
testcase_07 AC 47 ms
58,880 KB
testcase_08 AC 124 ms
75,904 KB
testcase_09 AC 140 ms
76,032 KB
testcase_10 AC 159 ms
76,416 KB
testcase_11 AC 137 ms
76,032 KB
testcase_12 AC 168 ms
76,160 KB
testcase_13 AC 119 ms
76,160 KB
testcase_14 AC 170 ms
75,904 KB
testcase_15 AC 170 ms
76,288 KB
testcase_16 AC 171 ms
76,032 KB
testcase_17 AC 168 ms
76,288 KB
testcase_18 AC 167 ms
75,776 KB
testcase_19 AC 149 ms
76,032 KB
testcase_20 AC 121 ms
75,904 KB
testcase_21 AC 124 ms
75,904 KB
testcase_22 AC 131 ms
75,904 KB
testcase_23 AC 164 ms
76,160 KB
testcase_24 AC 41 ms
51,584 KB
testcase_25 AC 41 ms
51,712 KB
testcase_26 AC 41 ms
51,456 KB
testcase_27 AC 51 ms
59,520 KB
testcase_28 AC 41 ms
52,096 KB
testcase_29 AC 41 ms
51,712 KB
testcase_30 AC 41 ms
51,840 KB
testcase_31 AC 59 ms
63,360 KB
testcase_32 AC 40 ms
51,968 KB
testcase_33 AC 60 ms
62,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod = 998244353

N = int(input())
S = list(input().rstrip())

dp = [0]*(N+1)
dp[0] = 1
r = 0
for s in S:
    t = 1 if s == "(" else -1
    ndp = [0]*(N+1)
    for i in range(N):
        if t == 1:
            ndp[i+1] += dp[i]
            ndp[i] += dp[i]
        else:
            if i-1 >= 0:
                ndp[i-1] += dp[i]
            if r - i > 0:
                ndp[i] += dp[i]
        ndp[i-1] %= mod
    r += t
    dp = ndp

print(dp[0])
0