結果

問題 No.809 かけ算
ユーザー eyeSharpeyeSharp
提出日時 2019-10-08 19:51:15
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 547 bytes
コンパイル時間 1,363 ms
コンパイル使用メモリ 158,832 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-25 03:09:13
合計ジャッジ時間 1,636 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 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 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*
    No.809 かけ算
    https://yukicoder.me/problems/no/809
*/
#include <bits/stdc++.h>
using namespace std;

long int prime_factorize(long int c) {
    if (c % 2 == 0) {
        return 2;
    } else if (c % 5 == 0) {
        return 5;
    }
    for (int i = 3; i <= sqrt(c); i += 2) {
        if (c % i == 0) {
            return i;
        }
    }
    return 1;
}

int main() {
    ios::sync_with_stdio(0);
    cin.tie(0);

    long int c;
    cin >> c;

    long int div = prime_factorize(c);
    cout << div << " " << (c / div) << endl;
}
0