結果

問題 No.300 平方数
ユーザー Hydrogen332Hydrogen332
提出日時 2024-11-13 00:39:20
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 13 ms / 1,000 ms
コード長 815 bytes
コンパイル時間 3,059 ms
コンパイル使用メモリ 249,384 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-13 00:39:26
合計ジャッジ時間 4,930 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 43
権限があれば一括ダウンロードができます

ソースコード

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()

vector<pair<ll, ll>> prime_factorize(ll n) {
    vector<pair<ll, ll>> res;
    for (ll i = 2; i * i <= n; i++) {
        if (n % i != 0) continue;
        ll ex = 0;
        
        while (n % i == 0) {
            ex++;
            n /= i;
        }
        
        res.push_back(make_pair(i, ex));
    }
    
    if (n != 1) res.push_back(make_pair(n, 1));
    return res;
}

int main() {
    cin.tie(nullptr);
    
    ll X;
    cin >> X;
    vector<pair<ll, ll>> primes = prime_factorize(X);
    
    ll ans = 1;
    rep(i, 0, primes.size()) {
        if (primes[i].second % 2 == 1) ans *= primes[i].first;
    }
    
    cout << ans << '\n';
}
0