結果

問題 No.2031 Colored Brackets
ユーザー first_vilfirst_vil
提出日時 2022-08-05 22:06:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 993 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-09-15 18:59:42
合計ジャッジ時間 4,830 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,224 KB
testcase_01 AC 45 ms
52,352 KB
testcase_02 AC 43 ms
52,224 KB
testcase_03 AC 52 ms
60,288 KB
testcase_04 AC 114 ms
76,032 KB
testcase_05 AC 84 ms
73,856 KB
testcase_06 AC 97 ms
75,648 KB
testcase_07 AC 49 ms
59,008 KB
testcase_08 AC 137 ms
75,904 KB
testcase_09 AC 154 ms
76,160 KB
testcase_10 AC 182 ms
76,160 KB
testcase_11 AC 154 ms
76,544 KB
testcase_12 AC 188 ms
76,160 KB
testcase_13 AC 134 ms
75,904 KB
testcase_14 AC 192 ms
76,160 KB
testcase_15 AC 193 ms
76,288 KB
testcase_16 AC 194 ms
76,032 KB
testcase_17 AC 212 ms
76,160 KB
testcase_18 AC 166 ms
76,288 KB
testcase_19 AC 151 ms
76,032 KB
testcase_20 AC 121 ms
75,648 KB
testcase_21 AC 129 ms
75,648 KB
testcase_22 AC 130 ms
75,520 KB
testcase_23 AC 164 ms
76,160 KB
testcase_24 AC 43 ms
52,480 KB
testcase_25 AC 42 ms
52,224 KB
testcase_26 AC 43 ms
52,352 KB
testcase_27 AC 49 ms
58,752 KB
testcase_28 AC 42 ms
52,224 KB
testcase_29 AC 42 ms
52,480 KB
testcase_30 AC 42 ms
52,608 KB
testcase_31 AC 62 ms
64,128 KB
testcase_32 AC 43 ms
52,480 KB
testcase_33 AC 61 ms
63,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush
import sys

int1 = lambda x: int(x) - 1

# input = lambda: sys.stdin.buffer.readline()
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
i1 = lambda: int1(input())
mi = lambda: map(int, input().split())
mi1 = lambda: map(int1, input().split())
li = lambda: list(mi())
li1 = lambda: list(mi1())
lli = lambda n: [li() for _ in range(n)]

INF = float("inf")
# mod = int(1e9 + 7)
mod = 998244353


n = ii()
a = [1 if c == "(" else -1 for c in input()]
dp = [0] * (n + 1)  # dp[x]= 赤の合計がxで青の合計がacc-x
dp[0] = 1
acc = 0
for i in range(n):
    nxt = [0] * (n + 1)
    for x in range(n + 1):
        y = acc - x
        if 0 <= x + a[i] <= n:
            nxt[x + a[i]] += dp[x]
            if nxt[x + a[i]] >= mod:
                nxt[x + a[i]] -= mod
        if 0 <= y + a[i] <= n:
            nxt[x] += dp[x]
            if nxt[x] >= mod:
                nxt[x] -= mod
    dp = nxt
    acc += a[i]
print(dp[0])
0