結果

問題 No.1532 Different Products
ユーザー sten_sansten_san
提出日時 2021-06-04 21:52:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,343 bytes
コンパイル時間 2,140 ms
コンパイル使用メモリ 212,284 KB
実行使用メモリ 587,008 KB
最終ジャッジ日時 2024-11-19 13:56:59
合計ジャッジ時間 189,644 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,640 KB
testcase_01 AC 832 ms
77,732 KB
testcase_02 AC 2 ms
13,636 KB
testcase_03 AC 2 ms
313,120 KB
testcase_04 AC 2 ms
13,636 KB
testcase_05 AC 2 ms
13,640 KB
testcase_06 AC 3 ms
13,636 KB
testcase_07 AC 5 ms
13,640 KB
testcase_08 AC 9 ms
13,640 KB
testcase_09 AC 197 ms
335,872 KB
testcase_10 AC 1,119 ms
92,324 KB
testcase_11 AC 800 ms
374,144 KB
testcase_12 AC 3,250 ms
208,164 KB
testcase_13 AC 1,480 ms
385,280 KB
testcase_14 TLE -
testcase_15 AC 15 ms
319,396 KB
testcase_16 AC 978 ms
87,716 KB
testcase_17 AC 840 ms
70,688 KB
testcase_18 AC 545 ms
52,128 KB
testcase_19 MLE -
testcase_20 TLE -
testcase_21 AC 1,501 ms
118,564 KB
testcase_22 AC 1,775 ms
124,708 KB
testcase_23 AC 749 ms
64,932 KB
testcase_24 TLE -
testcase_25 AC 2,638 ms
178,592 KB
testcase_26 AC 201 ms
331,648 KB
testcase_27 AC 2,195 ms
155,808 KB
testcase_28 AC 1,617 ms
123,560 KB
testcase_29 AC 1,409 ms
118,308 KB
testcase_30 AC 3,175 ms
201,380 KB
testcase_31 MLE -
testcase_32 AC 3,693 ms
229,796 KB
testcase_33 AC 2,684 ms
183,328 KB
testcase_34 MLE -
testcase_35 MLE -
testcase_36 TLE -
testcase_37 AC 774 ms
386,176 KB
testcase_38 TLE -
testcase_39 MLE -
testcase_40 MLE -
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 AC 2 ms
6,816 KB
testcase_62 AC 2 ms
6,816 KB
testcase_63 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

struct iofast_t {
    iofast_t() {
        ios::sync_with_stdio(false);
        cin.tie(nullptr);
    }
} iofast;

struct uns_t {} uns;
template <typename Element, typename Head, typename ...Args>
auto vec(Element init, Head arg, Args ...args) {
    if constexpr (sizeof...(Args) == 0) return std::vector(arg, init);
    else return std::vector(arg, vec(init, args...));
}
template <typename Element, typename Head, typename ...Args>
auto vec(uns_t, Head arg, Args ...args) {
    return vec(Element(), arg, args...);
}

template <typename T, typename Compare = less<T>>
T &chmin(T &l, T r, Compare &&f = less<T>()) { return l = min(l, r, f); }
template <typename T, typename Compare = less<T>>
T &chmax(T &l, T r, Compare &&f = less<T>()) { return l = max(l, r, f); }

int main() {
    int64_t n, k; cin >> n >> k;

    map<tuple<int, int64_t>, tuple<int64_t, bool>> memo;

    auto solve = [&](auto &&self, int i, int64_t j) -> int64_t {
        auto &[ans, vis] = memo[{ i, j }];

        if (i == 0) {
            return 0 < j;
        }

        if (j == 0) {
            return 0;
        }

        if (vis) {
            return ans;
        }
        vis = true;

        return ans = self(self, i - 1, j) + self(self, i - 1, j / i);
    };

    cout << solve(solve, n, k) - 1 << endl;
}

0