結果

問題 No.2031 Colored Brackets
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-08-05 22:46:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 471 bytes
コンパイル時間 914 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-09-15 20:11:34
合計ジャッジ時間 4,010 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,328 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 48 ms
58,880 KB
testcase_04 AC 85 ms
76,032 KB
testcase_05 AC 74 ms
71,808 KB
testcase_06 AC 79 ms
76,160 KB
testcase_07 AC 43 ms
57,728 KB
testcase_08 AC 94 ms
76,032 KB
testcase_09 AC 104 ms
76,032 KB
testcase_10 AC 121 ms
76,032 KB
testcase_11 AC 108 ms
75,776 KB
testcase_12 AC 118 ms
75,904 KB
testcase_13 AC 94 ms
75,904 KB
testcase_14 AC 126 ms
75,648 KB
testcase_15 AC 126 ms
75,776 KB
testcase_16 AC 120 ms
76,032 KB
testcase_17 AC 160 ms
76,032 KB
testcase_18 AC 104 ms
75,648 KB
testcase_19 AC 104 ms
75,648 KB
testcase_20 AC 86 ms
75,776 KB
testcase_21 AC 87 ms
75,776 KB
testcase_22 AC 89 ms
75,904 KB
testcase_23 AC 101 ms
75,776 KB
testcase_24 AC 40 ms
51,840 KB
testcase_25 AC 41 ms
51,584 KB
testcase_26 AC 40 ms
51,456 KB
testcase_27 AC 45 ms
57,344 KB
testcase_28 AC 41 ms
51,328 KB
testcase_29 AC 41 ms
51,584 KB
testcase_30 AC 41 ms
51,968 KB
testcase_31 AC 58 ms
62,592 KB
testcase_32 AC 41 ms
52,096 KB
testcase_33 AC 54 ms
61,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [0]*(n+1)
dp[0] = 1

count = 0

for s in S:
    ndp = [0]*(n+1)
    ad = 1 if s == "(" else -1

    for i in range(n+1):
        if dp[i] == 0:
            continue

        if 0 <= i+ad <= n:
            ndp[i+ad] += dp[i]
            ndp[i+ad] %= mod

        if 0 <= count-i+ad <= n:
            ndp[i] += dp[i]
            ndp[i] %= mod
    dp = ndp
    count += ad

ans = 0
if count == 0:
    ans = dp[0]
print(ans)
0