結果

問題 No.2031 Colored Brackets
ユーザー tassei903tassei903
提出日時 2022-08-08 13:14:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 1,015 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 109,952 KB
最終ジャッジ日時 2024-09-18 23:51:11
合計ジャッジ時間 3,822 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,000 KB
testcase_01 AC 36 ms
52,480 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 81 ms
61,184 KB
testcase_04 AC 82 ms
86,656 KB
testcase_05 AC 55 ms
68,480 KB
testcase_06 AC 62 ms
72,832 KB
testcase_07 AC 34 ms
52,608 KB
testcase_08 AC 93 ms
87,940 KB
testcase_09 AC 103 ms
87,940 KB
testcase_10 AC 132 ms
107,648 KB
testcase_11 AC 103 ms
87,552 KB
testcase_12 AC 132 ms
109,824 KB
testcase_13 AC 88 ms
87,808 KB
testcase_14 AC 135 ms
109,952 KB
testcase_15 AC 136 ms
109,912 KB
testcase_16 AC 142 ms
109,440 KB
testcase_17 AC 158 ms
109,696 KB
testcase_18 AC 110 ms
109,824 KB
testcase_19 AC 90 ms
88,064 KB
testcase_20 AC 79 ms
87,688 KB
testcase_21 AC 82 ms
87,624 KB
testcase_22 AC 83 ms
87,680 KB
testcase_23 AC 113 ms
109,184 KB
testcase_24 AC 33 ms
52,224 KB
testcase_25 AC 34 ms
52,352 KB
testcase_26 AC 34 ms
52,352 KB
testcase_27 AC 33 ms
51,840 KB
testcase_28 AC 34 ms
52,224 KB
testcase_29 AC 36 ms
52,096 KB
testcase_30 AC 37 ms
52,096 KB
testcase_31 AC 49 ms
62,336 KB
testcase_32 AC 32 ms
52,736 KB
testcase_33 AC 45 ms
62,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
n = ni()
s = [[-1,1][i == "("]for i in input()]
d = [0]
for i in range(n):
    d.append(d[-1] + s[i])

dp = [[0 for j in range(n//2+1)]for i in range(n+1)]
dp[0][0] = 1
mod = 998244353
for i in range(n):
    for j in range(n//2+1):
        now = dp[i][j]
        if now == 0:
            continue
        ni = i + 1
        # ()
        nj = j + s[i]
        nk = d[i+1] - nj
        if 0 <= nj <= n//2 and 0 <= nk <= n//2:
            dp[ni][nj] += now
            dp[ni][nj] %= mod
        # []
        nj = j
        nk = d[i+1] - nj
        if 0 <= nj <= n//2 and 0 <= nk <= n//2:
            dp[ni][nj] += now
            dp[ni][nj] %= mod
print(dp[-1][0])
0