結果

問題 No.1492 01文字列と転倒
ユーザー kakel-sankakel-san
提出日時 2024-06-26 23:26:37
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 674 ms / 4,000 ms
コード長 1,330 bytes
コンパイル時間 7,602 ms
コンパイル使用メモリ 168,284 KB
実行使用メモリ 190,556 KB
最終ジャッジ日時 2024-06-26 23:26:57
合計ジャッジ時間 14,880 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
30,844 KB
testcase_01 AC 59 ms
31,104 KB
testcase_02 AC 671 ms
70,400 KB
testcase_03 AC 595 ms
67,292 KB
testcase_04 AC 563 ms
66,560 KB
testcase_05 AC 478 ms
67,428 KB
testcase_06 AC 520 ms
67,200 KB
testcase_07 AC 552 ms
67,256 KB
testcase_08 AC 674 ms
70,528 KB
testcase_09 AC 58 ms
30,976 KB
testcase_10 AC 57 ms
30,848 KB
testcase_11 AC 58 ms
30,592 KB
testcase_12 AC 59 ms
30,848 KB
testcase_13 AC 58 ms
30,720 KB
testcase_14 AC 500 ms
67,328 KB
testcase_15 AC 61 ms
32,128 KB
testcase_16 AC 74 ms
38,528 KB
testcase_17 AC 474 ms
67,328 KB
testcase_18 AC 73 ms
39,168 KB
testcase_19 AC 60 ms
31,212 KB
testcase_20 AC 68 ms
36,352 KB
testcase_21 AC 410 ms
63,104 KB
testcase_22 AC 73 ms
38,528 KB
testcase_23 AC 65 ms
190,556 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (91 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[1][];
        dp[0] = new long[] { 1 };
        for (var i = 0; i < n * 2; ++i)
        {
            var ndp = new long[Math.Min(n, i + 1) + 1][];
            for (var j = 0; j < ndp.Length; ++j) ndp[j] = new long[((i + 1) / 2) * ((i + 1) / 2) + 1];
            for (var j = i % 2; j <= i && j < dp.Length; j += 2)
            {
                for (var k = 0; k < dp[j].Length; ++k)
                {
                    if (dp[j][k] == 0) continue;
                    if (j + 1 < ndp.Length) ndp[j + 1][k + (i - j) / 2]
                        = (ndp[j + 1][k + (i - j) / 2] + dp[j][k]) % m;
                    if (j > 0) ndp[j - 1][k] = (ndp[j - 1][k] + dp[j][k]) % m;
                }
            }
            dp = ndp;
        }
        WriteLine(string.Join("\n", dp[0]));
        // WriteLine((DateTime.Now - start).TotalSeconds);
    }
}
0