結果

問題 No.3331 Consecutive Cubic Sum
コンテスト
ユーザー otoshigo
提出日時 2025-11-02 21:33:38
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2,581 ms / 5,000 ms
コード長 1,195 bytes
コンパイル時間 3,301 ms
コンパイル使用メモリ 295,616 KB
実行使用メモリ 113,152 KB
最終ジャッジ日時 2025-11-02 21:34:50
合計ジャッジ時間 51,027 ms
ジャッジサーバーID
(参考情報)
judge7 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 47
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = unsigned 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;
    set<ll> se;
    ll sum = 0;
    map<ll, ll> mp;
    for (ll i = 0; i * i * i <= N; i++) {
        sum += i * i * i;
        mp[sum] = i;
        se.insert(sum);
    }
    vector<pair<ll, ll>> ans;
    for (auto x : se) {
        if (se.count(x - N)) {
            ans.push_back({mp[x - N] + 1, mp[x]});
        }
    }
    cout << (int)ans.size() << endl;
    sort(all(ans));
    for (auto [l, r] : ans) cout << l << " " << r << endl;
}

int main() {
    solve();
}
0