結果

問題 No.473 和と積の和
ユーザー りあんりあん
提出日時 2016-12-23 04:00:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 54 ms / 3,000 ms
コード長 1,014 bytes
コンパイル時間 2,204 ms
コンパイル使用メモリ 180,492 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-05-09 14:28:27
合計ジャッジ時間 4,072 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 20 ms
13,568 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 4 ms
5,376 KB
testcase_25 AC 54 ms
18,816 KB
testcase_26 AC 18 ms
12,416 KB
testcase_27 AC 23 ms
13,184 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 3 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 32 ms
14,080 KB
testcase_35 AC 27 ms
14,080 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 27 ms
14,080 KB
testcase_39 AC 15 ms
10,624 KB
testcase_40 AC 16 ms
10,624 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 23 ms
18,048 KB
testcase_43 AC 27 ms
18,048 KB
testcase_44 AC 31 ms
18,048 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 2 ms
5,376 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 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