結果

問題 No.1492 01文字列と転倒
ユーザー kakel-sankakel-san
提出日時 2024-06-26 23:11:40
言語 C#
(.NET 8.0.203)
結果
MLE  
実行時間 -
コード長 1,401 bytes
コンパイル時間 9,066 ms
コンパイル使用メモリ 167,860 KB
実行使用メモリ 564,164 KB
最終ジャッジ日時 2024-06-26 23:12:10
合計ジャッジ時間 20,500 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
30,720 KB
testcase_01 AC 58 ms
30,720 KB
testcase_02 MLE -
testcase_03 MLE -
testcase_04 AC 982 ms
485,116 KB
testcase_05 AC 806 ms
413,240 KB
testcase_06 AC 862 ms
430,116 KB
testcase_07 AC 921 ms
465,080 KB
testcase_08 MLE -
testcase_09 AC 56 ms
30,720 KB
testcase_10 AC 56 ms
30,848 KB
testcase_11 AC 58 ms
30,592 KB
testcase_12 AC 57 ms
30,592 KB
testcase_13 AC 57 ms
30,592 KB
testcase_14 AC 863 ms
429,744 KB
testcase_15 AC 59 ms
31,744 KB
testcase_16 AC 71 ms
38,640 KB
testcase_17 AC 826 ms
413,368 KB
testcase_18 AC 71 ms
39,296 KB
testcase_19 AC 57 ms
30,976 KB
testcase_20 AC 67 ms
36,212 KB
testcase_21 AC 683 ms
351,876 KB
testcase_22 AC 71 ms
38,528 KB
testcase_23 AC 62 ms
189,296 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (89 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();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, m) = (c[0], c[1]);
        // var start = DateTime.Now;
        var dp = new long[n * 2 + 1][][];
        for (var i = 0; i < dp.Length; ++i)
        {
            dp[i] = new long[n + 1][];
            for (var j = 0; j < dp[i].Length; ++j) dp[i][j] = new long[(i / 2) * (i / 2) + 1];
        }
        dp[0][0][0] = 1;
        for (var i = 0; i + 1 < dp.Length; ++i)
        {
            for (var j = i % 2; j < dp[i].Length && j <= i; j += 2)
            {
                for (var k = 0; k < dp[i][j].Length; ++k)
                {
                    if (dp[i][j][k] == 0) continue;
                    if (j + 1 < dp[i].Length) dp[i + 1][j + 1][k + (i - j) / 2]
                        = (dp[i + 1][j + 1][k + (i - j) / 2] + dp[i][j][k]) % m;
                    if (j > 0) dp[i + 1][j - 1][k] = (dp[i + 1][j - 1][k] + dp[i][j][k]) % m;
                }
            }
        }
        WriteLine(string.Join("\n", dp[^1][0]));
        // WriteLine((DateTime.Now - start).TotalSeconds);
    }
}
0