結果

問題 No.312 置換処理
ユーザー zaichuzaichu
提出日時 2015-12-26 03:32:41
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 847 bytes
コンパイル時間 1,480 ms
コンパイル使用メモリ 165,968 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-11-15 11:59:55
合計ジャッジ時間 3,530 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
14,976 KB
testcase_01 AC 33 ms
13,824 KB
testcase_02 AC 56 ms
18,688 KB
testcase_03 AC 55 ms
18,688 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 53 ms
18,560 KB
testcase_06 AC 27 ms
12,288 KB
testcase_07 AC 47 ms
16,896 KB
testcase_08 AC 42 ms
15,744 KB
testcase_09 AC 20 ms
9,088 KB
testcase_10 AC 23 ms
10,112 KB
testcase_11 AC 45 ms
16,128 KB
testcase_12 AC 29 ms
12,160 KB
testcase_13 AC 50 ms
17,408 KB
testcase_14 AC 32 ms
13,312 KB
testcase_15 AC 30 ms
12,032 KB
testcase_16 AC 18 ms
8,576 KB
testcase_17 AC 39 ms
14,592 KB
testcase_18 AC 35 ms
14,848 KB
testcase_19 AC 45 ms
16,512 KB
testcase_20 AC 50 ms
18,048 KB
testcase_21 AC 52 ms
18,688 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 1 ms
5,248 KB
testcase_27 AC 1 ms
5,248 KB
testcase_28 AC 1 ms
5,248 KB
testcase_29 AC 1 ms
5,248 KB
testcase_30 AC 8 ms
5,248 KB
testcase_31 AC 10 ms
6,144 KB
testcase_32 AC 6 ms
5,248 KB
testcase_33 AC 18 ms
8,064 KB
testcase_34 AC 17 ms
8,192 KB
testcase_35 AC 17 ms
8,064 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 1 ms
5,248 KB
testcase_39 AC 16 ms
7,680 KB
testcase_40 AC 4 ms
5,248 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 3 ms
5,248 KB
testcase_43 AC 2 ms
5,248 KB
testcase_44 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
    long long int n;
    cin >> n;
    vector<long long int>data(sqrt(n) + 1);
    for(long long int i = 2; i <= sqrt(n); i++){
        data[i] = i;
    }
    for(long long int i = 2; i <= sqrt(n); i++){
        if(data[i]){
            for(long long int j = 0; i * (j + 2) <= sqrt(n); j++){
                data[i * (j + 2)] = 0;
            }
        }
    }
	data.push_back(3);
	data.push_back(4);
    sort(data.begin(),data.end());
    data.erase(unique(data.begin(),data.end()),data.end());
    for(int i = 0; i < 2; i++) data.erase(data.begin());
    for(int i = 0; i < data.size(); i++){
        if(n % data[i] == 0){
			cout << data[i] << endl;
            return 0;
        }
    }
    if(n % 2 == 0 and n != 4) cout << n / 2 << endl;
    else cout << n << endl;
   	return 0;
}
0