結果

問題 No.809 かけ算
ユーザー eyeSharpeyeSharp
提出日時 2019-10-08 19:49:03
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 460 bytes
コンパイル時間 1,497 ms
コンパイル使用メモリ 157,940 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-04-25 03:07:07
合計ジャッジ時間 5,301 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,624 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 TLE -
testcase_06 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

long int prime_factorize(long int c) {
    for (int i = 2; i < c; i++) {
        if (c % i == 0) {
            c = i;
            break;
        }
    }
    return c;
}

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