結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 197 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 3 ms
6,820 KB
testcase_08 AC 4 ms
6,820 KB
testcase_09 AC 36 ms
6,820 KB
testcase_10 AC 199 ms
7,552 KB
testcase_11 AC 145 ms
7,168 KB
testcase_12 AC 610 ms
10,368 KB
testcase_13 AC 239 ms
9,344 KB
testcase_14 AC 1,318 ms
12,672 KB
testcase_15 AC 5 ms
6,816 KB
testcase_16 AC 312 ms
6,816 KB
testcase_17 AC 149 ms
7,296 KB
testcase_18 AC 88 ms
7,040 KB
testcase_19 AC 542 ms
10,624 KB
testcase_20 AC 1,285 ms
12,928 KB
testcase_21 AC 458 ms
7,296 KB
testcase_22 AC 290 ms
8,960 KB
testcase_23 AC 112 ms
7,680 KB
testcase_24 AC 1,166 ms
12,544 KB
testcase_25 AC 586 ms
9,600 KB
testcase_26 AC 51 ms
6,820 KB
testcase_27 AC 620 ms
8,192 KB
testcase_28 AC 399 ms
7,936 KB
testcase_29 AC 428 ms
6,820 KB
testcase_30 AC 864 ms
9,472 KB
testcase_31 AC 863 ms
9,472 KB
testcase_32 AC 988 ms
10,240 KB
testcase_33 AC 774 ms
9,088 KB
testcase_34 AC 1,151 ms
11,648 KB
testcase_35 AC 977 ms
10,240 KB
testcase_36 AC 1,165 ms
11,520 KB
testcase_37 AC 236 ms
6,816 KB
testcase_38 AC 1,186 ms
12,032 KB
testcase_39 AC 1,108 ms
11,136 KB
testcase_40 AC 1,094 ms
11,392 KB
testcase_41 AC 1,493 ms
13,952 KB
testcase_42 AC 1,325 ms
13,056 KB
testcase_43 AC 1,365 ms
13,440 KB
testcase_44 AC 1,568 ms
14,336 KB
testcase_45 AC 1,519 ms
14,336 KB
testcase_46 AC 1,536 ms
13,952 KB
testcase_47 AC 1,551 ms
14,208 KB
testcase_48 AC 1,541 ms
14,208 KB
testcase_49 AC 1,566 ms
14,208 KB
testcase_50 AC 1,554 ms
14,208 KB
testcase_51 AC 1,634 ms
14,336 KB
testcase_52 AC 1,668 ms
14,080 KB
testcase_53 AC 1,606 ms
14,336 KB
testcase_54 AC 1,572 ms
14,080 KB
testcase_55 AC 1,588 ms
14,208 KB
testcase_56 AC 1,511 ms
13,824 KB
testcase_57 AC 1,539 ms
14,080 KB
testcase_58 AC 1,533 ms
14,080 KB
testcase_59 AC 1,535 ms
13,696 KB
testcase_60 AC 1,658 ms
14,336 KB
testcase_61 AC 2 ms
6,816 KB
testcase_62 AC 2 ms
6,816 KB
testcase_63 AC 1,631 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