結果

問題 No.2031 Colored Brackets
ユーザー 👑 KazunKazun
提出日時 2022-08-05 22:18:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 675 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 111,872 KB
最終ジャッジ日時 2024-09-15 19:21:35
合計ジャッジ時間 5,134 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 48 ms
58,752 KB
testcase_04 AC 119 ms
86,656 KB
testcase_05 AC 82 ms
69,504 KB
testcase_06 AC 91 ms
73,216 KB
testcase_07 AC 43 ms
52,096 KB
testcase_08 AC 146 ms
90,112 KB
testcase_09 AC 164 ms
90,240 KB
testcase_10 AC 201 ms
107,520 KB
testcase_11 AC 161 ms
90,368 KB
testcase_12 AC 212 ms
110,848 KB
testcase_13 AC 138 ms
90,368 KB
testcase_14 AC 217 ms
111,488 KB
testcase_15 AC 215 ms
111,872 KB
testcase_16 AC 215 ms
111,488 KB
testcase_17 AC 220 ms
111,744 KB
testcase_18 AC 208 ms
111,744 KB
testcase_19 AC 170 ms
90,240 KB
testcase_20 AC 141 ms
90,368 KB
testcase_21 AC 144 ms
90,752 KB
testcase_22 AC 150 ms
90,880 KB
testcase_23 AC 200 ms
109,312 KB
testcase_24 AC 41 ms
51,840 KB
testcase_25 AC 41 ms
52,096 KB
testcase_26 AC 42 ms
52,352 KB
testcase_27 AC 43 ms
52,480 KB
testcase_28 AC 41 ms
51,584 KB
testcase_29 AC 42 ms
52,352 KB
testcase_30 AC 41 ms
51,328 KB
testcase_31 AC 61 ms
64,000 KB
testcase_32 AC 41 ms
51,840 KB
testcase_33 AC 61 ms
63,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=["*"]+[1 if s=="(" else -1 for s in input()]

T=[0]*(N+1)
for i in range(1,N+1):
    T[i]=T[i-1]+S[i]

Mod=998244353
DP=[[0]*(N//2+1) for _ in range(N+1)]; DP[0][0]=1

for i in range(1,N+1):
    for j in range(N//2+1):
        # 赤に塗る
        if S[i]==1:
            if j-1>=0:
                DP[i][j]+=DP[i-1][j-1]
        else:
            if j+1<=N//2:
                DP[i][j]+=DP[i-1][j+1]

        # 青に塗る
        if S[i]==1:
            if T[i]-j<=N//2:
                DP[i][j]+=DP[i-1][j]
        else:
            if T[i]-j>=0:
                DP[i][j]+=DP[i-1][j]

    for j in range(N//2+1):
        DP[i][j]%=Mod

print(DP[N][0])
0