結果

問題 No.3332 Consecutive Power Sum (Small)
コンテスト
ユーザー otoshigo
提出日時 2025-11-02 21:45:59
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 922 ms / 2,025 ms
コード長 1,964 bytes
コンパイル時間 3,295 ms
コンパイル使用メモリ 300,432 KB
実行使用メモリ 113,152 KB
最終ジャッジ日時 2025-11-02 21:46:28
合計ジャッジ時間 27,238 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 52
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, s, t) for (ll i = (ll)s; i < (ll)(t); i++)
#define rrep(i, s, t) for (ll i = (ll)(t) - 1; i >= (ll)(s); i--)
#define all(x) begin(x), end(x)
#define rall(x) rbegin(x), rend(x)

#define TT template <typename T>
template <class T1, class T2>
bool chmin(T1& x, T2 y) { return x > y ? (x = y, true) : false; }
template <class T1, class T2>
bool chmax(T1& x, T2 y) { return x < y ? (x = y, true) : false; }

struct io_setup {
    io_setup() {
        ios::sync_with_stdio(false);
        std::cin.tie(nullptr);
        cout << fixed << setprecision(15);
        srand(time(NULL));
    }
} io_setup;

void solve() {
    ll N;
    cin >> N;
    auto f = [&](ll x, ll y) -> ll {
        ll ret = 1;
        while (y > 0) {
            if (y & 1) ret *= x;
            x *= x;
            y >>= 1;
        }
        return ret;
    };
    vector<tuple<ll, ll, ll>> ans;
    rep(E, 1, 41) {
        if (E == 1) {
            for (ll x = 1; x * x <= 2 * N; x++) {
                if ((2 * N) % x != 0) continue;
                ll a = x, b = 2 * N / x;
                if ((a + b) % 2 == 0) continue;
                ll r = (a + b - 1) / 2, l = b - r;
                assert(l <= r);
                if (0 < l) ans.push_back({E, l, r});
            }
        } else {
            set<ll> se;
            ll sum = 0;
            map<ll, ll> mp;
            for (ll i = 0;; i++) {
                ll s = f(i, E);
                if (s > N) break;
                sum += s;
                mp[sum] = i;
                se.insert(sum);
            }
            for (auto x : se) {
                if (se.count(x - N)) {
                    ans.push_back({E, mp[x - N] + 1, mp[x]});
                }
            }
        }
        sort(all(ans));
    }
    cout << (int)ans.size() << endl;
    for (auto [e, l, r] : ans) cout << e << " " << l << " " << r << endl;
}

int main() {
    solve();
}
0