結果

問題 No.473 和と積の和
ユーザー nebukuro09nebukuro09
提出日時 2018-01-12 04:04:41
言語 D
(dmd 2.106.1)
結果
RE  
実行時間 -
コード長 870 bytes
コンパイル時間 880 ms
コンパイル使用メモリ 120,396 KB
実行使用メモリ 22,976 KB
最終ジャッジ日時 2024-06-12 23:29:38
合計ジャッジ時間 8,156 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 RE -
testcase_03 AC 293 ms
11,376 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 RE -
testcase_07 AC 1 ms
6,940 KB
testcase_08 RE -
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 1 ms
6,940 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 1 ms
6,940 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 3 ms
6,940 KB
testcase_24 AC 4 ms
6,940 KB
testcase_25 AC 1,287 ms
22,976 KB
testcase_26 AC 194 ms
9,284 KB
testcase_27 AC 280 ms
10,412 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 1 ms
6,944 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 777 ms
17,960 KB
testcase_35 AC 749 ms
16,948 KB
testcase_36 AC 2 ms
6,944 KB
testcase_37 AC 1 ms
6,944 KB
testcase_38 AC 779 ms
16,868 KB
testcase_39 AC 367 ms
11,188 KB
testcase_40 AC 389 ms
13,328 KB
testcase_41 AC 435 ms
13,712 KB
testcase_42 AC 6 ms
6,940 KB
testcase_43 AC 90 ms
9,104 KB
testcase_44 AC 260 ms
13,472 KB
testcase_45 AC 1 ms
6,944 KB
testcase_46 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop;


void main() {
    auto s = readln.split.map!(to!int);
    auto N = s[0];
    auto X = s[1] + 1;

    int[] factors;

    for (int i = 2; i * i <= X; i++) {
        if (X % i == 0) factors ~= (i * i == X ? [i] : [i, X / i]);
    }
    factors.sort();


    int[int][int][int] mem;

    int dfs(int x, int k, int d) {
        if (d == N) return x == 1;
        if (factors[k] > x) return 0;
        if (x in mem && k in mem[x] && d in mem[x][k]) return mem[x][k][d];

        int ans = 0;
        foreach (i; k..factors.length.to!int) {
            if (x % factors[i] == 0) ans += dfs(x / factors[i], i, d+1);
        }

        return mem[x][k][d] = ans;
    }

    dfs(X, 0, 0).writeln;
}
0