結果

問題 No.3156 Count That Day's N
ユーザー Hydrogen332
提出日時 2025-05-24 01:00:59
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 26 ms / 3,000 ms
コード長 809 bytes
コンパイル時間 3,364 ms
コンパイル使用メモリ 279,380 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2025-05-24 01:01:04
合計ジャッジ時間 4,885 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, s, e) for (int i = (int)(s); i < (int)(e); ++i)
#define all(a) (a).begin(),(a).end()

int main() {
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);
    
    ll N, K;
    cin >> K >> N;
    
    set<ll> X, Y;
    ll t = 1;
    while (true) {
        if (t*t*t*t*t*t > N) break;
        X.insert(t*t*t*t*t*t);
        ++t;
    }
    t = 1;
    while (true) {
        if (t*t*t*t > N) break;
        Y.insert(t*t*t*t);
        ++t;
    }
    
    set<ll> ans;
    for (ll x : X) for (ll y : Y) {
        ll zz = x + y;
        if (zz > N) continue;
        if (zz % K != 0) continue;
        zz /= K;
        
        ll z = sqrt(zz);
        if (z*z == zz) ans.insert(zz);
    }
    
    cout << ans.size() << '\n';
}
0