結果

問題 No.2872 Depth of the Parentheses
ユーザー kakel-sankakel-san
提出日時 2024-10-10 00:18:47
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 2,088 bytes
コンパイル時間 9,791 ms
コンパイル使用メモリ 166,512 KB
実行使用メモリ 30,336 KB
最終ジャッジ日時 2024-10-10 00:19:35
合計ジャッジ時間 12,410 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
29,824 KB
testcase_01 AC 58 ms
30,208 KB
testcase_02 AC 59 ms
30,336 KB
testcase_03 AC 58 ms
29,952 KB
testcase_04 AC 59 ms
29,952 KB
testcase_05 AC 59 ms
30,076 KB
testcase_06 AC 58 ms
30,336 KB
testcase_07 AC 59 ms
29,824 KB
testcase_08 AC 58 ms
30,336 KB
testcase_09 AC 57 ms
30,064 KB
testcase_10 AC 59 ms
30,336 KB
testcase_11 AC 58 ms
30,064 KB
testcase_12 AC 59 ms
30,076 KB
testcase_13 AC 58 ms
30,080 KB
testcase_14 AC 58 ms
30,080 KB
testcase_15 AC 58 ms
30,336 KB
testcase_16 AC 58 ms
30,208 KB
testcase_17 AC 59 ms
30,076 KB
testcase_18 AC 59 ms
30,044 KB
testcase_19 AC 58 ms
29,824 KB
testcase_20 AC 58 ms
30,336 KB
testcase_21 AC 59 ms
29,824 KB
testcase_22 AC 59 ms
30,044 KB
evil_01.txt WA -
evil_02.txt WA -
evil_03.txt WA -
evil_04.txt WA -
evil_05.txt WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (100 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

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 string[] SList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => ReadLine()).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (x, k) = (c[0], c[1]);
        if (k > 10)
        {
            WriteLine(-1);
            return;
        }
        var mod = 998_244_353;
        var rev = Exp(100, mod - 2, mod);
        var f = x * rev % mod;
        var b = (100 - x) * rev % mod;
        var dp = new long[2 * k + 1][][];
        for (var i = 0; i < dp.Length; ++i)
        {
            dp[i] = new long[k + 1][];
            for (var j = 0; j < dp[i].Length; ++j) dp[i][j] = new long[k + 1];
        }
        dp[0][0][0] = 1;
        for (var i = 0; i + 1 < dp.Length; ++i)
        {
            for (var p = 0; p <= k; ++p) for (var q = 0; q <= p; ++q)
            {
                if (q < k)
                {
                    if (p == q) dp[i + 1][p + 1][q + 1] = (dp[i + 1][p + 1][q + 1] + dp[i][p][q] * f) % mod;
                    else dp[i + 1][p][q + 1] = (dp[i + 1][p][q + 1] + dp[i][p][q] * f) % mod;
                }
                if (q > 0)
                {
                    dp[i + 1][p][q - 1] = (dp[i + 1][p][q - 1] + dp[i][p][q] * b) % mod;
                }
            }
        }
        var ans = 0L;
        for (var p = 1; p <= k; ++p) ans = (ans + dp[^1][p][0] * p) % mod;
        WriteLine(ans);
    }
    static long Exp(long n, long p, int mod)
    {
        long _n = n % mod;
        var _p = p;
        var result = 1L;
        if ((_p & 1) == 1) result *= _n;
        while (_p > 0)
        {
            _n = _n * _n % mod;
            _p >>= 1;
            if ((_p & 1) == 1) result = result * _n % mod;
        }
        return result;
    }
}
0