結果

問題 No.1581 Multiple Sequence
ユーザー kakel-sankakel-san
提出日時 2024-02-29 23:35:20
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 598 ms / 2,000 ms
コード長 1,593 bytes
コンパイル時間 7,433 ms
コンパイル使用メモリ 168,148 KB
実行使用メモリ 219,616 KB
最終ジャッジ日時 2024-09-29 13:03:57
合計ジャッジ時間 16,142 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
29,548 KB
testcase_01 AC 50 ms
29,312 KB
testcase_02 AC 474 ms
60,844 KB
testcase_03 AC 512 ms
61,212 KB
testcase_04 AC 175 ms
43,136 KB
testcase_05 AC 556 ms
61,356 KB
testcase_06 AC 255 ms
50,160 KB
testcase_07 AC 163 ms
42,364 KB
testcase_08 AC 210 ms
46,336 KB
testcase_09 AC 490 ms
61,052 KB
testcase_10 AC 344 ms
60,048 KB
testcase_11 AC 113 ms
36,976 KB
testcase_12 AC 223 ms
47,488 KB
testcase_13 AC 68 ms
31,360 KB
testcase_14 AC 522 ms
61,212 KB
testcase_15 AC 388 ms
60,308 KB
testcase_16 AC 128 ms
38,376 KB
testcase_17 AC 576 ms
62,704 KB
testcase_18 AC 101 ms
35,840 KB
testcase_19 AC 460 ms
60,968 KB
testcase_20 AC 470 ms
61,108 KB
testcase_21 AC 509 ms
61,316 KB
testcase_22 AC 296 ms
53,616 KB
testcase_23 AC 598 ms
219,616 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (95 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 int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var m = NN;
        var mod = 1_000_000_007;
        var dp = new long[m + 1][];
        dp[0] = new long[0];
        for (var i = 1; i < dp.Length; ++i)
        {
            dp[i] = new long[m / i + 1];
            dp[i][1] = 1;
        }
        for (var i = m; i > 0; --i)
        {
            var plist = PList(i);
            for (var j = 1; j < dp[i].Length; ++j)
            {
                foreach (var p in plist) if (i * j + p <= m)
                {
                    dp[p][i * j / p + 1] = (dp[p][i * j / p + 1] + dp[i][j]) % mod;
                }
            }
        }
        var ans = 0L;
        for (var i = 1; i <= m; ++i) if (m / i * i == m) ans = (ans + dp[i][m / i]) % mod;
        WriteLine(ans);
    }
    static List<int> PList(int n)
    {
        var ans = new List<int>();
        var rev = new List<int>();
        for (var i = 1; i * i <= n; ++i)
        {
            if (n % i == 0)
            {
                ans.Add(i);
                if (i * i < n) rev.Add(n / i);
            }
        }
        rev.Reverse();
        ans.AddRange(rev);
        return ans;
    }
}
0