結果

問題 No.2031 Colored Brackets
ユーザー lloyzlloyz
提出日時 2023-09-25 21:58:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 802 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-07-18 17:39:19
合計ジャッジ時間 3,622 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,096 KB
testcase_01 AC 33 ms
52,224 KB
testcase_02 AC 34 ms
51,968 KB
testcase_03 AC 40 ms
58,112 KB
testcase_04 AC 85 ms
76,160 KB
testcase_05 AC 60 ms
73,856 KB
testcase_06 AC 73 ms
76,160 KB
testcase_07 AC 36 ms
57,600 KB
testcase_08 AC 93 ms
76,416 KB
testcase_09 AC 100 ms
76,544 KB
testcase_10 AC 118 ms
76,416 KB
testcase_11 AC 108 ms
76,188 KB
testcase_12 AC 118 ms
76,152 KB
testcase_13 AC 83 ms
76,100 KB
testcase_14 AC 120 ms
76,216 KB
testcase_15 AC 122 ms
76,544 KB
testcase_16 AC 123 ms
76,160 KB
testcase_17 AC 123 ms
76,416 KB
testcase_18 AC 101 ms
76,052 KB
testcase_19 AC 95 ms
76,416 KB
testcase_20 AC 87 ms
76,288 KB
testcase_21 AC 85 ms
76,124 KB
testcase_22 AC 87 ms
76,352 KB
testcase_23 AC 106 ms
76,408 KB
testcase_24 AC 34 ms
52,224 KB
testcase_25 AC 33 ms
51,840 KB
testcase_26 AC 32 ms
51,968 KB
testcase_27 AC 34 ms
57,472 KB
testcase_28 AC 31 ms
52,096 KB
testcase_29 AC 31 ms
52,480 KB
testcase_30 AC 31 ms
51,968 KB
testcase_31 AC 44 ms
62,720 KB
testcase_32 AC 33 ms
52,224 KB
testcase_33 AC 43 ms
62,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
S = list(input())
mod = 998244353

Open = [0 for _ in range(n)]
Close = [0 for _ in range(n)]
for i in range(n):
    if S[i] == '(':
        Open[i] += 1
    else:
        Close[i] += 1
    Open[i] += Open[i - 1]
    Close[i] += Close[i - 1]

DP = [0 for _ in range(n + 1)]
DP[0] = 1
for i in range(n):
    NDP = [0 for _ in range(n + 1)]
    dif = Open[i] - Close[i]
    if S[i] == '(':
        for j in range(i + 1):
            NDP[j + 1] += DP[j]
            NDP[j + 1] %= mod
            NDP[j] += DP[j]
            NDP[j] %= mod
    else:
        for j in range(i + 1):
            if j > 0:
                NDP[j - 1] += DP[j]
                NDP[j - 1] %= mod
            if dif - j >= 0:
                NDP[j] += DP[j]
                NDP[j] %= mod
    DP = NDP
print(DP[0])
0