結果

問題 No.2031 Colored Brackets
ユーザー tamatotamato
提出日時 2022-08-05 21:49:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 673 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-09-15 18:15:29
合計ジャッジ時間 4,405 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 37 ms
51,328 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 44 ms
58,496 KB
testcase_04 AC 84 ms
75,264 KB
testcase_05 AC 67 ms
75,692 KB
testcase_06 AC 73 ms
75,776 KB
testcase_07 AC 42 ms
57,984 KB
testcase_08 AC 102 ms
75,648 KB
testcase_09 AC 116 ms
76,288 KB
testcase_10 AC 135 ms
76,032 KB
testcase_11 AC 116 ms
75,520 KB
testcase_12 AC 142 ms
76,160 KB
testcase_13 AC 98 ms
75,904 KB
testcase_14 AC 147 ms
76,288 KB
testcase_15 AC 145 ms
75,904 KB
testcase_16 AC 147 ms
76,032 KB
testcase_17 AC 154 ms
76,416 KB
testcase_18 AC 136 ms
76,416 KB
testcase_19 AC 121 ms
76,212 KB
testcase_20 AC 98 ms
75,904 KB
testcase_21 AC 100 ms
76,032 KB
testcase_22 AC 104 ms
75,648 KB
testcase_23 AC 130 ms
75,776 KB
testcase_24 AC 38 ms
51,692 KB
testcase_25 AC 39 ms
51,840 KB
testcase_26 AC 39 ms
51,968 KB
testcase_27 AC 43 ms
57,728 KB
testcase_28 AC 38 ms
51,968 KB
testcase_29 AC 39 ms
52,352 KB
testcase_30 AC 38 ms
51,840 KB
testcase_31 AC 47 ms
60,544 KB
testcase_32 AC 38 ms
51,456 KB
testcase_33 AC 47 ms
60,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())
    S = input().rstrip('\n')

    dp = [0] * (N + 1)
    dp[0] = 1
    total_balance = 0
    for i, s in enumerate(S):
        if s == "(":
            d = 1
        else:
            d = -1
        dp_new = [0] * (2 * N + 1)
        for j in range(N + 1):
            k = total_balance - j
            if 0 <= j + d <= N:
                dp_new[j + d] = (dp_new[j + d] + dp[j]) % mod
            if 0 <= k + d <= N:
                dp_new[j] = (dp_new[j] + dp[j]) % mod
        total_balance += d
        dp = dp_new
    print(dp[0])


if __name__ == '__main__':
    main()
0