結果

問題 No.1973 Divisor Sequence
ユーザー kokatsukokatsu
提出日時 2022-06-11 23:09:13
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 594 ms / 2,000 ms
コード長 800 bytes
コンパイル時間 2,293 ms
コンパイル使用メモリ 204,952 KB
実行使用メモリ 199,340 KB
最終ジャッジ日時 2024-06-22 15:26:07
合計ジャッジ時間 6,631 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 292 ms
93,340 KB
testcase_03 AC 15 ms
7,936 KB
testcase_04 AC 156 ms
44,700 KB
testcase_05 AC 43 ms
14,940 KB
testcase_06 AC 175 ms
61,988 KB
testcase_07 AC 30 ms
12,828 KB
testcase_08 AC 88 ms
35,276 KB
testcase_09 AC 140 ms
40,220 KB
testcase_10 AC 178 ms
65,644 KB
testcase_11 AC 23 ms
11,864 KB
testcase_12 AC 141 ms
51,560 KB
testcase_13 AC 38 ms
12,356 KB
testcase_14 AC 99 ms
27,816 KB
testcase_15 AC 230 ms
87,292 KB
testcase_16 AC 233 ms
84,540 KB
testcase_17 AC 148 ms
42,740 KB
testcase_18 AC 10 ms
6,940 KB
testcase_19 AC 196 ms
73,120 KB
testcase_20 AC 30 ms
13,492 KB
testcase_21 AC 218 ms
78,164 KB
testcase_22 AC 192 ms
72,060 KB
testcase_23 AC 270 ms
199,340 KB
testcase_24 AC 594 ms
124,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main() {
    long N, M;
    readf("%d %d\n", N, M);

    enum long MOD = 10 ^^ 9 + 7;

    void addMod(ref long x, long y) {
        x = (x + y) % MOD;
    }

    long[long] cnts;
    long d = 2;
    while (d * d <= M) {
        while (M % d == 0) {
            ++cnts[d];
            M /= d;
        }
        ++d;
    }

    if (M > 1) ++cnts[M];

    long res = 1;
    foreach (key, val; cnts) {
        auto dp = new long[][](N+1, val+1);
        dp[0][0] = 1;
        foreach (i; 1 .. N+1) {
            long tmp;
            foreach_reverse (j; 0 .. val+1) {
                addMod(tmp, dp[i-1][val-j]);
                dp[i][j] = tmp;
            }
        }

        long num = dp[N].fold!((a, b) => (a + b) % MOD);
        res = (res * num) % MOD;
    }

    res.writeln;
}
0