結果

問題 No.2031 Colored Brackets
ユーザー hir355hir355
提出日時 2022-08-05 22:31:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 543 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 138,240 KB
最終ジャッジ日時 2024-09-15 19:45:58
合計ジャッジ時間 4,146 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 39 ms
52,268 KB
testcase_04 AC 82 ms
91,640 KB
testcase_05 AC 69 ms
71,680 KB
testcase_06 AC 76 ms
88,464 KB
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 105 ms
111,804 KB
testcase_09 AC 111 ms
115,172 KB
testcase_10 AC 136 ms
137,844 KB
testcase_11 AC 112 ms
114,944 KB
testcase_12 AC 138 ms
137,800 KB
testcase_13 AC 86 ms
92,140 KB
testcase_14 AC 139 ms
137,864 KB
testcase_15 AC 141 ms
137,888 KB
testcase_16 AC 140 ms
138,240 KB
testcase_17 AC 159 ms
138,128 KB
testcase_18 AC 118 ms
137,660 KB
testcase_19 AC 122 ms
132,736 KB
testcase_20 AC 97 ms
111,616 KB
testcase_21 AC 98 ms
113,280 KB
testcase_22 AC 102 ms
115,060 KB
testcase_23 AC 124 ms
137,856 KB
testcase_24 AC 37 ms
52,096 KB
testcase_25 AC 38 ms
52,096 KB
testcase_26 AC 38 ms
51,968 KB
testcase_27 AC 37 ms
52,096 KB
testcase_28 AC 37 ms
52,480 KB
testcase_29 AC 38 ms
52,224 KB
testcase_30 AC 38 ms
51,968 KB
testcase_31 AC 48 ms
62,164 KB
testcase_32 AC 38 ms
52,096 KB
testcase_33 AC 50 ms
61,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
n = int(input())
s = input()
dp = [[0] * (n + 1) for _ in range(n + 1)]
dp[0][0] = 1
d = 0
for i in range(n):
    if s[i] == '(':
        for j in range(d + 1):
            dp[i + 1][j] += dp[i][j]
            dp[i + 1][j + 1] += dp[i][j]
        d += 1
    else:
        for j in range(1, d):
            dp[i + 1][j] += dp[i][j]
            dp[i + 1][j - 1] += dp[i][j]
        dp[i + 1][0] += dp[i][0]
        dp[i + 1][d - 1] += dp[i][d]
        d -= 1
    for j in range(d + 1):
        dp[i + 1][j] %= MOD
print(dp[n][0])
0