結果

問題 No.1383 Numbers of Product
ユーザー MisterMister
提出日時 2021-02-07 21:14:41
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,383 bytes
コンパイル時間 3,583 ms
コンパイル使用メモリ 100,784 KB
最終ジャッジ日時 2025-01-18 14:21:32
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 1,174 ms
43,264 KB
testcase_08 AC 1,166 ms
42,752 KB
testcase_09 AC 1,461 ms
52,096 KB
testcase_10 AC 1,958 ms
67,584 KB
testcase_11 AC 1,925 ms
66,688 KB
testcase_12 TLE -
testcase_13 AC 1,829 ms
64,896 KB
testcase_14 AC 1,585 ms
55,424 KB
testcase_15 AC 1,243 ms
45,568 KB
testcase_16 AC 1,922 ms
66,944 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 3 ms
5,248 KB
testcase_20 AC 3 ms
5,248 KB
testcase_21 AC 3 ms
5,248 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 3 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 3 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 27 ms
5,248 KB
testcase_29 AC 1,520 ms
53,504 KB
testcase_30 AC 1,968 ms
68,352 KB
testcase_31 AC 3 ms
5,248 KB
testcase_32 AC 377 ms
16,768 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 3 ms
5,248 KB
testcase_35 AC 1,788 ms
62,464 KB
testcase_36 AC 1,732 ms
59,904 KB
testcase_37 AC 1,988 ms
68,224 KB
testcase_38 AC 1,978 ms
68,352 KB
testcase_39 AC 1,993 ms
68,352 KB
testcase_40 AC 1,943 ms
68,352 KB
testcase_41 AC 1,977 ms
68,352 KB
testcase_42 AC 1,963 ms
68,224 KB
testcase_43 TLE -
testcase_44 TLE -
testcase_45 AC 1,956 ms
68,352 KB
testcase_46 AC 2 ms
5,248 KB
testcase_47 AC 1,939 ms
66,816 KB
testcase_48 AC 1,924 ms
67,328 KB
testcase_49 AC 1,966 ms
67,968 KB
testcase_50 AC 1,989 ms
67,840 KB
testcase_51 AC 2 ms
5,248 KB
testcase_52 AC 3 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#line 1 "main.cpp"
#include <iostream>
#include <map>

using namespace std;
using lint = long long;

constexpr lint INF = 1LL << 60;

lint prod(lint a, lint b) {
    if (a == 0 || b == 0) return 0;
    if (a >= INF / b + 1) return INF;
    return min(INF, a * b);
}

void solve() {
    lint n, k, m;
    cin >> n >> k >> m;

    auto g = [&](lint a, lint b) {
        auto ret = a;
        for (lint x = 1; x <= b; ++x) {
            ret = prod(ret, a + prod(k, x));
        }
        return ret;
    };

    map<lint, int> cnt;
    for (lint b = 2; b <= 18; ++b) {
        for (lint a = 1;; ++a) {
            auto p = g(a, b);
            if (p > n) break;

            if (!cnt.count(p)) cnt[p] = 0;
            ++cnt[p];
        }
    }

    auto h = [&](lint x) {
        lint ok = 0, ng = INF;
        while (ng - ok > 1) {
            lint a = (ok + ng) / 2;

            if (g(a, 1) <= x) {
                ok = a;
            } else {
                ng = a;
            }
        }
        return ok;
    };

    lint ones = h(n);
    for (auto& [x, c] : cnt) {
        if (g(h(x), 1) == x) {
            ++c;
            --ones;
        }
    }

    lint ans = (m == 1 ? ones : 0);
    for (auto [x, c] : cnt) {
        if (c == m) ++ans;
    }
    cout << ans << "\n";
}

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    solve();

    return 0;
}
0