結果

問題 No.312 置換処理
ユーザー zaichuzaichu
提出日時 2015-12-26 02:09:05
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 593 bytes
コンパイル時間 1,247 ms
コンパイル使用メモリ 164,768 KB
実行使用メモリ 10,968 KB
最終ジャッジ日時 2024-09-19 00:09:40
合計ジャッジ時間 3,350 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
9,116 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 42 ms
10,800 KB
testcase_06 AC 24 ms
7,724 KB
testcase_07 AC 36 ms
10,008 KB
testcase_08 AC 32 ms
9,592 KB
testcase_09 AC 16 ms
6,940 KB
testcase_10 AC 18 ms
6,944 KB
testcase_11 AC 34 ms
9,672 KB
testcase_12 AC 24 ms
7,712 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 13 ms
6,944 KB
testcase_36 WA -
testcase_37 RE -
testcase_38 WA -
testcase_39 AC 13 ms
6,944 KB
testcase_40 AC 3 ms
6,940 KB
testcase_41 RE -
testcase_42 AC 3 ms
6,944 KB
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
	long long int n;
	cin >> n;
	n += 2;
	vector<long long int>data(sqrt(n));
	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;
			}
		}
	}
	sort(data.begin(),data.end());
	data.erase(unique(data.begin(),data.end()),data.end());
	data.erase(data.begin());
	for(int i = 0; i < data.size(); i++){
		if(n % data[i] == 2){
			cout << data[i] << endl;
			break;
		}
	}
   	return 0;
}
0