結果

問題 No.36 素数が嫌い!
ユーザー zaichuzaichu
提出日時 2015-12-30 00:29:08
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 789 ms / 5,000 ms
コード長 762 bytes
コンパイル時間 1,680 ms
コンパイル使用メモリ 165,096 KB
実行使用メモリ 78,596 KB
最終ジャッジ日時 2024-06-27 00:35:51
合計ジャッジ時間 11,742 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 342 ms
38,004 KB
testcase_01 AC 601 ms
61,892 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 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 237 ms
27,664 KB
testcase_12 AC 789 ms
78,596 KB
testcase_13 AC 768 ms
78,336 KB
testcase_14 AC 474 ms
49,964 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 289 ms
32,548 KB
testcase_20 AC 783 ms
78,360 KB
testcase_21 AC 583 ms
60,696 KB
testcase_22 AC 600 ms
62,660 KB
testcase_23 AC 354 ms
38,672 KB
testcase_24 AC 396 ms
42,880 KB
testcase_25 AC 389 ms
42,240 KB
testcase_26 AC 458 ms
48,896 KB
testcase_27 AC 660 ms
67,724 KB
testcase_28 AC 450 ms
48,000 KB
testcase_29 AC 754 ms
75,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int check(long long int n){
	vector<long long int> data(sqrt(n)+1);
	for(int i = 2; i <= sqrt(n); i++) data[i] = i;
	for(int i = 2; i <= sqrt(n); i++){
		if(data[i]){
			for(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(auto a:data) cout << a << endl;
	int count = 0;
	for(int i = 0; i < data.size(); i++){
		while(n % data[i] == 0){
			n /= data[i];
			count++;
		}
	}
	if(n > 1) count++;
	//	cout << count << endl;
	return count;
}

int main(){
	long long int n;
	cin >> n;
	if(check(n) >= 3) cout << "YES" << endl;
	else cout << "NO" << endl;
	return 0;
}
0