結果

問題 No.2031 Colored Brackets
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2022-08-06 02:42:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 683 bytes
コンパイル時間 2,112 ms
コンパイル使用メモリ 200,804 KB
実行使用メモリ 74,496 KB
最終ジャッジ日時 2024-09-16 00:16:26
合計ジャッジ時間 3,984 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 23 ms
30,592 KB
testcase_05 AC 11 ms
15,616 KB
testcase_06 AC 15 ms
20,992 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 36 ms
47,744 KB
testcase_09 AC 46 ms
61,312 KB
testcase_10 AC 55 ms
70,272 KB
testcase_11 AC 45 ms
59,520 KB
testcase_12 AC 57 ms
73,216 KB
testcase_13 AC 33 ms
43,648 KB
testcase_14 AC 58 ms
74,368 KB
testcase_15 AC 58 ms
74,368 KB
testcase_16 AC 57 ms
74,496 KB
testcase_17 AC 60 ms
74,496 KB
testcase_18 AC 53 ms
74,496 KB
testcase_19 AC 48 ms
67,072 KB
testcase_20 AC 34 ms
47,360 KB
testcase_21 AC 35 ms
49,280 KB
testcase_22 AC 38 ms
53,888 KB
testcase_23 AC 52 ms
72,064 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 3 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int main () {
    ll m = 998244353;
    int N;
    string s;
    cin >> N >> s;
    ll dp[3030][3030];
    for (int i = 0; i <= N; i ++) {
        for (int j = 0; j <= N; j ++) {
            dp[i][j] = 0;
        }
    }
    dp[0][0] = 1;
    int now = 0;
    for (int i = 1; i <= N; i ++) {
        int x = (s[i - 1] == '(' ? 1 : -1);
        now += x;
        for (int j = 0; j <= now; j ++) {
            dp[i][j] = dp[i - 1][j];
            if (0 <= j - x && j - x <= N) {
                dp[i][j] += dp[i - 1][j - x];
                dp[i][j] %= m;
            }
        }
    }
    cout << dp[N][0] << endl;
}
0