結果

問題 No.473 和と積の和
ユーザー りあんりあん
提出日時 2016-12-23 03:57:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 37 ms / 3,000 ms
コード長 1,038 bytes
コンパイル時間 1,846 ms
コンパイル使用メモリ 181,500 KB
実行使用メモリ 20,268 KB
最終ジャッジ日時 2024-05-09 14:27:20
合計ジャッジ時間 3,320 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 14 ms
17,528 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 3 ms
6,948 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 3 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 4 ms
7,972 KB
testcase_24 AC 3 ms
6,940 KB
testcase_25 AC 37 ms
20,268 KB
testcase_26 AC 12 ms
16,020 KB
testcase_27 AC 15 ms
16,476 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 3 ms
6,940 KB
testcase_32 AC 3 ms
6,948 KB
testcase_33 AC 3 ms
6,940 KB
testcase_34 AC 20 ms
16,572 KB
testcase_35 AC 20 ms
17,436 KB
testcase_36 AC 3 ms
6,940 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 18 ms
16,448 KB
testcase_39 AC 11 ms
14,764 KB
testcase_40 AC 11 ms
13,944 KB
testcase_41 AC 2 ms
6,944 KB
testcase_42 AC 17 ms
19,888 KB
testcase_43 AC 18 ms
19,912 KB
testcase_44 AC 20 ms
19,892 KB
testcase_45 AC 3 ms
6,944 KB
testcase_46 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int id[1500][1500], dp[1500][1500];

int main() {
    int n, x;
    cin >> n >> x;
    ++x;
    if (n > 30 || x < 1 << n) {
        printf("0\n");
        return 0;
    }
    vector<int> yak;
    for (int i = 1; i * (long long)i <= x; i++) {
        if (x % i == 0) {
            yak.emplace_back(i);
            if (x / i > i)
                yak.emplace_back(x / i);
        }
    }
    sort(yak.begin(), yak.end());
    int c = yak.size();
    unordered_map<int, int> m;
    for (int i = 0; i < c; i++)
        m[yak[i]] = i;
    for (int i = 0; i < c; i++)
        for (int j = 0; j <= i; j++)
            id[i][j] = yak[i] % yak[j] > 0 ? 0 : m[yak[i] / yak[j]];
    for (int i = 1; i < c; i++)
        for (int j = i; j < c; j++)
            dp[i][j] = 1;
    for (int i = 0; i < n - 1; i++)
        for (int j = c - 1; j > 0; j--)
            for (int k = 1; k < c; k++)
                dp[j][k] = dp[j][k - 1] + dp[id[j][k]][k];

    cout << dp[c - 1][c - 1] << "\n";
    return 0;
}
0