結果

問題 No.2031 Colored Brackets
ユーザー lilictakalilictaka
提出日時 2022-08-10 13:52:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 302 ms / 2,000 ms
コード長 800 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 136,544 KB
最終ジャッジ日時 2024-09-21 00:16:37
合計ジャッジ時間 6,365 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,192 KB
testcase_01 AC 38 ms
53,140 KB
testcase_02 AC 38 ms
53,336 KB
testcase_03 AC 50 ms
62,828 KB
testcase_04 AC 131 ms
90,552 KB
testcase_05 AC 92 ms
84,444 KB
testcase_06 AC 116 ms
89,088 KB
testcase_07 AC 44 ms
60,932 KB
testcase_08 AC 191 ms
112,668 KB
testcase_09 AC 218 ms
113,012 KB
testcase_10 AC 269 ms
135,892 KB
testcase_11 AC 218 ms
112,652 KB
testcase_12 AC 281 ms
135,864 KB
testcase_13 AC 175 ms
108,892 KB
testcase_14 AC 283 ms
135,912 KB
testcase_15 AC 284 ms
135,940 KB
testcase_16 AC 294 ms
136,124 KB
testcase_17 AC 302 ms
136,020 KB
testcase_18 AC 273 ms
135,996 KB
testcase_19 AC 247 ms
133,384 KB
testcase_20 AC 182 ms
112,036 KB
testcase_21 AC 188 ms
113,892 KB
testcase_22 AC 196 ms
113,608 KB
testcase_23 AC 271 ms
136,544 KB
testcase_24 AC 39 ms
53,732 KB
testcase_25 AC 38 ms
53,088 KB
testcase_26 AC 38 ms
52,936 KB
testcase_27 AC 45 ms
60,924 KB
testcase_28 AC 39 ms
52,192 KB
testcase_29 AC 38 ms
52,716 KB
testcase_30 AC 39 ms
52,772 KB
testcase_31 AC 66 ms
67,796 KB
testcase_32 AC 40 ms
53,420 KB
testcase_33 AC 57 ms
65,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def acum(List):#累積和
    rev = [0 for _ in range(len(List))]
    for i in range(len(List)):
        if i == 0:
            rev[i] = List[i]
        else:
           rev[i] = rev[i-1] + List[i] 
    return rev
N = int(input())
S = [''] + list(input())
d = [0]
for s in S[1:]:
    if s == '(':
        d += [1]
    else:
        d += [-1]
d = acum(d)
dp = [[0] *(N+1) for _ in range(N+1)]
dp[0][0] = 1
mod = 998244353
for i in range(N):
    for r in range(N+1):
        if d[i+1]-r >= 0:
            dp[i+1][r] += dp[i][r]
        if S[i+1] == '(':
            if r + 1 <= N and d[i+1]-(r+1) >= 0:
                dp[i+1][r+1] += dp[i][r]
        else:
            if r -1 >= 0 and d[i+1]-(r-1) >= 0:
                dp[i+1][r-1] += dp[i][r]
        dp[i+1][r] %= mod
ans = dp[N][0]%mod
print(ans)
0