結果

問題 No.1532 Different Products
ユーザー tabae326tabae326
提出日時 2021-06-04 20:49:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 618 bytes
コンパイル時間 2,527 ms
コンパイル使用メモリ 202,084 KB
実行使用メモリ 13,952 KB
最終ジャッジ日時 2024-11-19 10:27:31
合計ジャッジ時間 247,680 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,024 KB
testcase_01 TLE -
testcase_02 AC 2 ms
8,320 KB
testcase_03 AC 2 ms
9,888 KB
testcase_04 AC 2 ms
8,448 KB
testcase_05 AC 2 ms
10,624 KB
testcase_06 AC 2 ms
9,888 KB
testcase_07 AC 2 ms
8,448 KB
testcase_08 AC 2 ms
8,320 KB
testcase_09 AC 225 ms
9,892 KB
testcase_10 TLE -
testcase_11 AC 3,331 ms
8,448 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 2 ms
8,320 KB
testcase_16 TLE -
testcase_17 AC 3,635 ms
8,448 KB
testcase_18 AC 1,172 ms
8,448 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 2,144 ms
9,892 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 449 ms
8,320 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 AC 2,904 ms
8,448 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 WA -
testcase_62 AC 2 ms
5,248 KB
testcase_63 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = unsigned long long;
#define rep(i, srt, end) for (long long i = (srt); i < (long long)(end); i++)

void solve() {
    ll n, k;
    cin >> n >> k;
    auto dfs = [&](auto dfs, ll i, ll p) -> ll {
        ll prod = p * i;
        ll res = 1;
        rep(j, i+1, n+1) {
            if(prod * j > k) break;
            res += dfs(dfs, j, prod);
        }
        return res;
    };
    ll ans = 0;
    rep(i, 1, n+1) ans += dfs(dfs, i, 1);
    cout << ans << endl;
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    solve();
    return 0;
}
0