結果

問題 No.1063 ルートの計算 / Sqrt Calculation
ユーザー ManjushriMitraManjushriMitra
提出日時 2024-07-28 14:10:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 679 bytes
コンパイル時間 1,915 ms
コンパイル使用メモリ 172,940 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-28 14:10:44
合計ジャッジ時間 3,179 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,m,n) for(int i=m; i<n; ++i)
#define repl(i,m,n) for(ll i=m; i<n; ++i)

int main(){
    int n;
    cin >> n;

    map<int, int> p_fact;
    for(int i = 2; i*i <= n; ++i){
        if(n % i != 0) continue;
        int ex = 0;
        while(n % i == 0){
            n /= i;
            ex++;
        }
        p_fact[i] = ex;
    }
    if(n != 1) p_fact[n] = 1;

    int a = 1, b = 1;
    for(auto p : p_fact){
        rep(i, 0, p.second/2){
            a *= p.first;
        }
        if(p.second % 2 == 1){
            b *= p.first;
        }
    }
    cout << a << ' ' << b << endl;

    return 0;
}
0