結果

問題 No.36 素数が嫌い!
ユーザー zaichuzaichu
提出日時 2015-12-30 00:27:18
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 742 bytes
コンパイル時間 1,429 ms
コンパイル使用メモリ 164,828 KB
実行使用メモリ 78,720 KB
最終ジャッジ日時 2024-09-19 08:34:58
合計ジャッジ時間 10,352 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 533 ms
61,952 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 WA -
testcase_11 AC 170 ms
27,776 KB
testcase_12 AC 689 ms
78,720 KB
testcase_13 AC 690 ms
78,464 KB
testcase_14 AC 386 ms
50,048 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 331 ms
42,880 KB
testcase_25 WA -
testcase_26 AC 377 ms
48,896 KB
testcase_27 AC 569 ms
67,840 KB
testcase_28 AC 364 ms
48,000 KB
testcase_29 AC 664 ms
76,160 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++;
		}
	}
	//	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