結果

問題 No.1532 Different Products
ユーザー MisterMister
提出日時 2021-06-04 20:39:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,475 ms / 4,000 ms
コード長 611 bytes
コンパイル時間 956 ms
コンパイル使用メモリ 84,832 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-05-16 12:17:17
合計ジャッジ時間 48,748 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 218 ms
6,944 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 36 ms
6,940 KB
testcase_10 AC 187 ms
7,680 KB
testcase_11 AC 125 ms
7,168 KB
testcase_12 AC 556 ms
10,496 KB
testcase_13 AC 213 ms
9,344 KB
testcase_14 AC 1,170 ms
12,672 KB
testcase_15 AC 4 ms
6,940 KB
testcase_16 AC 281 ms
6,940 KB
testcase_17 AC 126 ms
7,424 KB
testcase_18 AC 71 ms
6,940 KB
testcase_19 AC 457 ms
10,624 KB
testcase_20 AC 1,132 ms
12,928 KB
testcase_21 AC 393 ms
7,424 KB
testcase_22 AC 254 ms
9,088 KB
testcase_23 AC 102 ms
7,680 KB
testcase_24 AC 1,030 ms
12,544 KB
testcase_25 AC 516 ms
9,600 KB
testcase_26 AC 42 ms
6,940 KB
testcase_27 AC 561 ms
8,448 KB
testcase_28 AC 354 ms
7,808 KB
testcase_29 AC 376 ms
6,940 KB
testcase_30 AC 749 ms
9,472 KB
testcase_31 AC 740 ms
9,600 KB
testcase_32 AC 865 ms
10,240 KB
testcase_33 AC 669 ms
9,088 KB
testcase_34 AC 1,000 ms
11,648 KB
testcase_35 AC 863 ms
10,240 KB
testcase_36 AC 998 ms
11,648 KB
testcase_37 AC 204 ms
6,940 KB
testcase_38 AC 1,059 ms
12,160 KB
testcase_39 AC 932 ms
11,136 KB
testcase_40 AC 945 ms
11,392 KB
testcase_41 AC 1,290 ms
13,952 KB
testcase_42 AC 1,174 ms
13,184 KB
testcase_43 AC 1,224 ms
13,568 KB
testcase_44 AC 1,338 ms
14,336 KB
testcase_45 AC 1,346 ms
14,336 KB
testcase_46 AC 1,311 ms
14,080 KB
testcase_47 AC 1,386 ms
14,336 KB
testcase_48 AC 1,399 ms
14,336 KB
testcase_49 AC 1,381 ms
14,336 KB
testcase_50 AC 1,475 ms
14,336 KB
testcase_51 AC 1,405 ms
14,336 KB
testcase_52 AC 1,368 ms
14,208 KB
testcase_53 AC 1,380 ms
14,208 KB
testcase_54 AC 1,369 ms
14,080 KB
testcase_55 AC 1,360 ms
14,336 KB
testcase_56 AC 1,295 ms
13,824 KB
testcase_57 AC 1,335 ms
14,208 KB
testcase_58 AC 1,343 ms
14,208 KB
testcase_59 AC 1,298 ms
13,696 KB
testcase_60 AC 1,407 ms
14,464 KB
testcase_61 AC 2 ms
6,940 KB
testcase_62 AC 2 ms
6,940 KB
testcase_63 AC 1,347 ms
14,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>

using namespace std;
using lint = unsigned long long;

void solve() {
    lint n;
    cin >> n;

    map<lint, lint> dp;
    {
        lint k;
        cin >> k;
        dp[k] = 1;
    }

    for (lint x = 1; x <= n; ++x) {
        map<lint, lint> ndp = dp;
        for (auto [k, p] : dp) {
            if (k < x) continue;
            ndp[k / x] += p;
        }
        swap(dp, ndp);
    }

    lint ans = -1;
    for (auto [k, p] : dp) ans += p;
    cout << ans << "\n";
}

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    solve();

    return 0;
}
0