結果

問題 No.2031 Colored Brackets
ユーザー kakel-sankakel-san
提出日時 2022-08-05 23:21:31
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 1,254 bytes
コンパイル時間 3,658 ms
コンパイル使用メモリ 116,764 KB
実行使用メモリ 40,448 KB
最終ジャッジ日時 2024-09-15 20:57:40
合計ジャッジ時間 6,247 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
17,536 KB
testcase_01 AC 22 ms
17,408 KB
testcase_02 AC 23 ms
17,792 KB
testcase_03 AC 23 ms
17,408 KB
testcase_04 AC 49 ms
21,888 KB
testcase_05 AC 35 ms
21,760 KB
testcase_06 AC 41 ms
21,632 KB
testcase_07 AC 22 ms
17,792 KB
testcase_08 AC 86 ms
40,192 KB
testcase_09 AC 102 ms
36,864 KB
testcase_10 AC 122 ms
34,560 KB
testcase_11 AC 98 ms
37,248 KB
testcase_12 AC 127 ms
33,960 KB
testcase_13 AC 73 ms
33,152 KB
testcase_14 AC 129 ms
33,816 KB
testcase_15 AC 131 ms
33,692 KB
testcase_16 AC 134 ms
33,820 KB
testcase_17 AC 130 ms
33,824 KB
testcase_18 AC 138 ms
33,816 KB
testcase_19 AC 118 ms
35,584 KB
testcase_20 AC 86 ms
40,448 KB
testcase_21 AC 87 ms
39,680 KB
testcase_22 AC 94 ms
38,656 KB
testcase_23 AC 129 ms
34,236 KB
testcase_24 AC 22 ms
17,664 KB
testcase_25 AC 23 ms
17,792 KB
testcase_26 AC 23 ms
17,664 KB
testcase_27 AC 23 ms
17,792 KB
testcase_28 AC 22 ms
17,920 KB
testcase_29 AC 22 ms
17,792 KB
testcase_30 AC 22 ms
17,536 KB
testcase_31 AC 23 ms
18,048 KB
testcase_32 AC 22 ms
17,664 KB
testcase_33 AC 24 ms
17,792 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static void Main()
    {
        var n = NN;
        var s = ReadLine();
        WriteLine(Brac(n, s));
    }
    static long Brac(int n, string s)
    {
        var dp = new int[n];
        dp[0] = 1;
        for (var i = 1; i < n; ++i)
        {
            if (s[i] == '(') dp[i] = dp[i - 1] + 1;
            else dp[i] = dp[i - 1] - 1;
        }
        var br = new long[s.Length / 2 + 1];
        br[0] = 1;
        for (var i = 0; i < s.Length; ++i)
        {
            var next = (long[]) br.Clone();
            if (s[i] == '(')
            {
                for (var j = 0; j + 1 < br.Length; ++j) next[j + 1] = (next[j + 1] + br[j]) % mod;
            }
            else
            {
                for (var j = 1; j < br.Length; ++j) next[j - 1] = (next[j - 1] + br[j]) % mod;
            }
            for (var j = dp[i] + 1; j < next.Length; ++j) next[j] = 0;
            br = next;
        }
        return br[0];
    }
    static int mod = 998_244_353;
}
0