結果

問題 No.1973 Divisor Sequence
ユーザー kakel-sankakel-san
提出日時 2022-06-10 22:42:10
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 1,609 bytes
コンパイル時間 2,949 ms
コンパイル使用メモリ 112,180 KB
実行使用メモリ 27,648 KB
最終ジャッジ日時 2024-09-21 06:39:06
合計ジャッジ時間 9,124 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
24,832 KB
testcase_01 AC 33 ms
19,456 KB
testcase_02 AC 1,003 ms
23,808 KB
testcase_03 AC 52 ms
22,016 KB
testcase_04 AC 592 ms
23,424 KB
testcase_05 AC 75 ms
23,552 KB
testcase_06 AC 338 ms
23,680 KB
testcase_07 AC 90 ms
23,552 KB
testcase_08 AC 204 ms
23,552 KB
testcase_09 AC 527 ms
23,552 KB
testcase_10 AC 1,139 ms
27,648 KB
testcase_11 AC 118 ms
23,808 KB
testcase_12 AC 286 ms
23,552 KB
testcase_13 AC 160 ms
23,680 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    static void Main()
    {
        var c = NList;
        var (n, m) = ((int)c[0], c[1]);
        WriteLine(Divisor(n, m));
    }
    static long Divisor(int n, long m)
    {
        var plist = PDiv(m);
        var dic = new Dictionary<long, int>();
        for (var i = 0; i < plist.Count; ++i) dic.Add(plist[i], i);

        var tree = new List<int>[plist.Count];
        for (var i = 0; i < tree.Length; ++i)
        {
            tree[i] = new List<int>();
            for (var j = 0; j < plist.Count; ++j)
            {
                if (m % ((decimal)plist[i] * plist[j]) == 0) tree[i].Add(j);
            }
        }
        var dp = Enumerable.Repeat(1L, plist.Count).ToArray();
        var mod = 1_000_000_007;
        for (var i = 1; i < n; ++i)
        {
            var next = new long[plist.Count];
            for (var p = 0; p < dp.Length; ++p) foreach (var v in tree[p])
            {
                next[v] = (next[v] + dp[p]) % mod;
            }
            dp = next;
        }
        return (dp.Sum() % mod);
    }
    static List<long> PDiv(long x)
    {
        var list = new List<long>();
        var rev = new List<long>();
        for (var i = 1L; i * i <= x; ++i) if (x % i == 0)
        {
            list.Add(i);
            if (i * i < x) rev.Add(x / i);
        }
        rev.Reverse();
        return list.Concat(rev).ToList();
    }
}
0