結果

問題 No.2031 Colored Brackets
ユーザー ああいいああいい
提出日時 2022-08-07 17:12:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 588 bytes
コンパイル時間 506 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 76,336 KB
最終ジャッジ日時 2024-09-17 10:15:19
合計ジャッジ時間 3,733 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,488 KB
testcase_01 AC 31 ms
52,552 KB
testcase_02 AC 32 ms
52,264 KB
testcase_03 AC 44 ms
58,884 KB
testcase_04 AC 71 ms
75,984 KB
testcase_05 AC 58 ms
71,216 KB
testcase_06 AC 58 ms
72,396 KB
testcase_07 AC 34 ms
53,256 KB
testcase_08 AC 73 ms
76,112 KB
testcase_09 AC 88 ms
75,996 KB
testcase_10 AC 93 ms
75,968 KB
testcase_11 AC 84 ms
76,128 KB
testcase_12 AC 91 ms
76,136 KB
testcase_13 AC 73 ms
76,336 KB
testcase_14 AC 92 ms
76,104 KB
testcase_15 AC 95 ms
76,128 KB
testcase_16 AC 92 ms
76,024 KB
testcase_17 AC 106 ms
76,224 KB
testcase_18 AC 78 ms
75,892 KB
testcase_19 AC 74 ms
75,888 KB
testcase_20 AC 69 ms
76,096 KB
testcase_21 AC 74 ms
75,900 KB
testcase_22 AC 77 ms
76,092 KB
testcase_23 AC 87 ms
76,092 KB
testcase_24 AC 37 ms
53,240 KB
testcase_25 AC 38 ms
52,760 KB
testcase_26 AC 36 ms
52,620 KB
testcase_27 AC 37 ms
52,456 KB
testcase_28 AC 36 ms
52,696 KB
testcase_29 AC 36 ms
53,496 KB
testcase_30 AC 38 ms
53,004 KB
testcase_31 AC 54 ms
65,268 KB
testcase_32 AC 35 ms
53,960 KB
testcase_33 AC 46 ms
64,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
P = 998244353

C = (N // 2) + 1
dp = [0] * C
dp[0] = 1
now = 0
for s in S:
    nx = [0] * C
    for red in range(C):
        blue = now - red
        if blue < 0:continue
        if s == "(":
            if red < C - 1:
                nx[red + 1] += dp[red]
            nx[red] += dp[red]
        else:
            if red > 0:
                nx[red - 1] += dp[red]
            if blue > 0:
                nx[red] += dp[red]
    for red in range(C):
        nx[red] %= P
    dp = nx
    if s == "(":
        now += 1
    else:
        now -= 1
print(dp[0])
0