結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 21 ms
16,896 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 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 3 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 3 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 2 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 3 ms
5,376 KB
testcase_25 AC 57 ms
24,576 KB
testcase_26 AC 18 ms
14,848 KB
testcase_27 AC 22 ms
16,128 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 3 ms
5,376 KB
testcase_33 AC 3 ms
5,376 KB
testcase_34 AC 32 ms
18,048 KB
testcase_35 AC 30 ms
18,176 KB
testcase_36 AC 3 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 29 ms
18,048 KB
testcase_39 AC 17 ms
11,776 KB
testcase_40 AC 16 ms
12,032 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 25 ms
23,552 KB
testcase_43 AC 29 ms
23,552 KB
testcase_44 AC 32 ms
23,552 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[2000][2000], dp[2000][2000];

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();
    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 < c; 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