結果

問題 No.2031 Colored Brackets
ユーザー EguyEguy
提出日時 2022-08-05 22:43:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 721 bytes
コンパイル時間 441 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 138,368 KB
最終ジャッジ日時 2024-09-15 20:07:32
合計ジャッジ時間 4,519 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 41 ms
52,480 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 41 ms
52,864 KB
testcase_04 AC 82 ms
92,032 KB
testcase_05 AC 60 ms
71,808 KB
testcase_06 AC 77 ms
88,832 KB
testcase_07 AC 40 ms
52,864 KB
testcase_08 AC 107 ms
112,476 KB
testcase_09 AC 122 ms
114,944 KB
testcase_10 AC 150 ms
137,856 KB
testcase_11 AC 125 ms
115,456 KB
testcase_12 AC 149 ms
137,984 KB
testcase_13 AC 98 ms
92,672 KB
testcase_14 AC 150 ms
137,984 KB
testcase_15 AC 152 ms
137,984 KB
testcase_16 AC 151 ms
138,112 KB
testcase_17 AC 164 ms
138,368 KB
testcase_18 AC 131 ms
137,984 KB
testcase_19 AC 133 ms
132,992 KB
testcase_20 AC 105 ms
112,000 KB
testcase_21 AC 111 ms
114,048 KB
testcase_22 AC 110 ms
115,072 KB
testcase_23 AC 135 ms
138,112 KB
testcase_24 AC 40 ms
52,224 KB
testcase_25 AC 40 ms
52,096 KB
testcase_26 AC 40 ms
51,968 KB
testcase_27 AC 40 ms
51,968 KB
testcase_28 AC 41 ms
51,840 KB
testcase_29 AC 41 ms
52,224 KB
testcase_30 AC 40 ms
52,096 KB
testcase_31 AC 54 ms
61,696 KB
testcase_32 AC 40 ms
52,224 KB
testcase_33 AC 52 ms
61,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, math
sys.setrecursionlimit(1000000)
INF = 1 << 100
#mod = 1000000007
mod = 998244353
input = lambda: sys.stdin.readline().rstrip()
li = lambda: list(map(int, input().split()))

N = int(input())
S = list(input())

dp = [[0] * (N+2) for _ in range(N+1)]
dp[0][0] = 1

x = 0
y = 0
for i in range(N):
    if S[i] == '(':
        x += 1
        for j in range(x-y+1):
            dp[i+1][j+1] += dp[i][j]
            dp[i+1][j] += dp[i][j]
            dp[i+1][j+1] %= mod
            dp[i+1][j] %= mod
    else:
        y += 1
        for j in range(x-y+1):
            dp[i+1][j] += dp[i][j+1]
            dp[i+1][j] += dp[i][j]
            dp[i+1][j] %= mod
            dp[i+1][j] %= mod

print(dp[-1][0] % mod)
0