結果

問題 No.1532 Different Products
ユーザー りあんりあん
提出日時 2021-06-04 20:20:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,431 ms / 4,000 ms
コード長 606 bytes
コンパイル時間 2,259 ms
コンパイル使用メモリ 210,664 KB
実行使用メモリ 12,048 KB
最終ジャッジ日時 2024-04-29 23:40:15
合計ジャッジ時間 51,025 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
6,816 KB
testcase_01 AC 174 ms
8,072 KB
testcase_02 AC 10 ms
6,668 KB
testcase_03 AC 7 ms
6,668 KB
testcase_04 AC 8 ms
6,796 KB
testcase_05 AC 7 ms
6,668 KB
testcase_06 AC 9 ms
6,668 KB
testcase_07 AC 10 ms
6,672 KB
testcase_08 AC 12 ms
6,796 KB
testcase_09 AC 40 ms
7,692 KB
testcase_10 AC 177 ms
8,720 KB
testcase_11 AC 133 ms
8,456 KB
testcase_12 AC 504 ms
10,128 KB
testcase_13 AC 204 ms
9,608 KB
testcase_14 AC 1,114 ms
11,404 KB
testcase_15 AC 12 ms
6,912 KB
testcase_16 AC 265 ms
8,080 KB
testcase_17 AC 134 ms
8,460 KB
testcase_18 AC 78 ms
8,336 KB
testcase_19 AC 451 ms
10,248 KB
testcase_20 AC 1,059 ms
11,280 KB
testcase_21 AC 402 ms
8,464 KB
testcase_22 AC 245 ms
9,608 KB
testcase_23 AC 104 ms
8,720 KB
testcase_24 AC 958 ms
11,276 KB
testcase_25 AC 494 ms
9,612 KB
testcase_26 AC 54 ms
7,436 KB
testcase_27 AC 530 ms
8,940 KB
testcase_28 AC 342 ms
8,848 KB
testcase_29 AC 371 ms
8,080 KB
testcase_30 AC 701 ms
9,488 KB
testcase_31 AC 719 ms
9,612 KB
testcase_32 AC 869 ms
10,124 KB
testcase_33 AC 685 ms
9,612 KB
testcase_34 AC 1,069 ms
10,636 KB
testcase_35 AC 891 ms
10,064 KB
testcase_36 AC 1,099 ms
10,892 KB
testcase_37 AC 223 ms
7,560 KB
testcase_38 AC 1,023 ms
10,888 KB
testcase_39 AC 890 ms
10,508 KB
testcase_40 AC 898 ms
10,508 KB
testcase_41 AC 1,314 ms
11,788 KB
testcase_42 AC 1,142 ms
11,532 KB
testcase_43 AC 1,171 ms
11,532 KB
testcase_44 AC 1,388 ms
12,044 KB
testcase_45 AC 1,320 ms
12,044 KB
testcase_46 AC 1,300 ms
11,788 KB
testcase_47 AC 1,344 ms
11,916 KB
testcase_48 AC 1,335 ms
12,040 KB
testcase_49 AC 1,324 ms
11,916 KB
testcase_50 AC 1,314 ms
11,916 KB
testcase_51 AC 1,311 ms
12,044 KB
testcase_52 AC 1,414 ms
12,044 KB
testcase_53 AC 1,431 ms
11,920 KB
testcase_54 AC 1,396 ms
11,952 KB
testcase_55 AC 1,316 ms
12,048 KB
testcase_56 AC 1,280 ms
11,792 KB
testcase_57 AC 1,251 ms
11,780 KB
testcase_58 AC 1,302 ms
11,920 KB
testcase_59 AC 1,315 ms
11,660 KB
testcase_60 AC 1,354 ms
12,048 KB
testcase_61 AC 6 ms
6,672 KB
testcase_62 AC 6 ms
6,792 KB
testcase_63 AC 1,330 ms
11,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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



int main() {
    cin.tie(0);
    ios::sync_with_stdio(0);
    int n;
    long long k;
    cin >> n >> k;
    unordered_map<long long, long long> dp;
    dp.reserve(210000);
    dp[k] = 1;
    for (int i = 1; i <= n; ++i) {
        unordered_map<long long, long long> nex = dp;
        for (auto& j : dp) {
            if (j.first >= i) {
                nex[j.first / i] += j.second;
            }
        }
        dp = nex;
    }
    long long ans = 0;
    for (auto& i : dp) {
        ans += i.second;
    }
    cout << ans - 1 << '\n';


    return 0;
}
0