結果

問題 No.2106 Wild Cacco
ユーザー 👑 rin204rin204
提出日時 2022-10-28 14:48:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 924 ms / 2,000 ms
コード長 912 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 119,312 KB
最終ジャッジ日時 2024-07-05 19:22:58
合計ジャッジ時間 17,013 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,584 KB
testcase_01 AC 35 ms
51,840 KB
testcase_02 AC 33 ms
52,096 KB
testcase_03 AC 32 ms
51,712 KB
testcase_04 AC 33 ms
51,968 KB
testcase_05 AC 45 ms
60,928 KB
testcase_06 AC 48 ms
62,080 KB
testcase_07 AC 48 ms
62,848 KB
testcase_08 AC 57 ms
62,848 KB
testcase_09 AC 56 ms
63,872 KB
testcase_10 AC 51 ms
62,592 KB
testcase_11 AC 433 ms
101,760 KB
testcase_12 AC 571 ms
106,528 KB
testcase_13 AC 706 ms
108,792 KB
testcase_14 AC 577 ms
112,504 KB
testcase_15 AC 538 ms
115,032 KB
testcase_16 AC 719 ms
118,528 KB
testcase_17 AC 647 ms
119,312 KB
testcase_18 AC 587 ms
116,724 KB
testcase_19 AC 618 ms
116,692 KB
testcase_20 AC 649 ms
118,956 KB
testcase_21 AC 651 ms
117,836 KB
testcase_22 AC 513 ms
117,412 KB
testcase_23 AC 491 ms
118,080 KB
testcase_24 AC 580 ms
116,348 KB
testcase_25 AC 645 ms
118,272 KB
testcase_26 AC 904 ms
117,952 KB
testcase_27 AC 855 ms
114,500 KB
testcase_28 AC 880 ms
115,220 KB
testcase_29 AC 35 ms
51,584 KB
testcase_30 AC 897 ms
116,932 KB
testcase_31 AC 463 ms
117,888 KB
testcase_32 AC 472 ms
116,736 KB
testcase_33 AC 913 ms
116,936 KB
testcase_34 AC 924 ms
118,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

S = input()
n = len(S)

dp = [[0] * 2 for _ in range(n)]
dp[0][0] = 1

for s in S:
    ndp = [[0] * 2 for _ in range(n)]
    def f1():
        for i in range(n - 1):
            ndp[i + 1][0] += dp[i][0]
            ndp[i + 1][1] += dp[i][1]
            ndp[i + 1][0] %= MOD
            ndp[i + 1][1] %= MOD

    def f2():
        for i in range(n - 1):
            ndp[i][0] += dp[i + 1][0]
            ndp[i][1] += dp[i + 1][1]
            ndp[i][0] %= MOD
            ndp[i][1] %= MOD

    def f3():
        for i in range(n - 1):
            ndp[i + 1][0] += dp[i][0]
            ndp[i + 1][0] %= MOD

            ndp[i][1] += dp[i + 1][1] + dp[i + 1][0]
            ndp[i][1] %= MOD


    if s == "(":
        f1()
    elif s == ")":
        f2()
    elif s == "?":
        f3()
    else:
        f1()
        f2()
        f3()
    
    dp = ndp


ans = dp[0][0] + dp[0][1]
print(ans % MOD)
0