結果

問題 No.1532 Different Products
ユーザー りあんりあん
提出日時 2021-06-04 20:17:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 646 bytes
コンパイル時間 2,904 ms
コンパイル使用メモリ 211,564 KB
実行使用メモリ 11,160 KB
最終ジャッジ日時 2024-11-19 08:31:12
合計ジャッジ時間 21,720 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 66 ms
6,560 KB
testcase_02 AC 4 ms
5,248 KB
testcase_03 AC 4 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 4 ms
5,248 KB
testcase_07 AC 4 ms
5,248 KB
testcase_08 AC 4 ms
5,248 KB
testcase_09 AC 14 ms
5,836 KB
testcase_10 AC 68 ms
7,448 KB
testcase_11 AC 52 ms
6,800 KB
testcase_12 WA -
testcase_13 AC 104 ms
8,160 KB
testcase_14 WA -
testcase_15 AC 4 ms
5,248 KB
testcase_16 AC 102 ms
6,532 KB
testcase_17 AC 52 ms
6,892 KB
testcase_18 AC 31 ms
6,652 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 146 ms
6,896 KB
testcase_22 AC 102 ms
7,904 KB
testcase_23 AC 40 ms
7,496 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 19 ms
5,792 KB
testcase_27 WA -
testcase_28 AC 133 ms
7,540 KB
testcase_29 AC 144 ms
6,808 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 78 ms
5,700 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 AC 3 ms
5,248 KB
testcase_62 AC 3 ms
5,248 KB
testcase_63 WA -
権限があれば一括ダウンロードができます

ソースコード

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, int> dp;
    dp.reserve(210000);
    dp[k] = 1;
    for (int i = 1; i <= n; ++i) {
        vector<pair<long long, int>> v;
        for (pair<long long, int> j : dp) {
            v.push_back(j);
        }
        for (auto& j : v) {
            if (j.first >= i) {
                dp[j.first / i] += j.second;
            }
        }
    }
    long long ans = 0;
    for (auto& i : dp) {
        ans += i.second;
    }
    cout << ans - 1 << '\n';
    return 0;
}
0