結果

問題 No.36 素数が嫌い!
ユーザー NotationNapNotationNap
提出日時 2015-05-01 03:16:23
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 66 ms / 5,000 ms
コード長 784 bytes
コンパイル時間 1,261 ms
コンパイル使用メモリ 158,864 KB
実行使用メモリ 13,240 KB
最終ジャッジ日時 2024-06-27 00:18:13
合計ジャッジ時間 4,109 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
13,120 KB
testcase_01 AC 62 ms
13,084 KB
testcase_02 AC 62 ms
13,136 KB
testcase_03 AC 63 ms
13,168 KB
testcase_04 AC 64 ms
13,052 KB
testcase_05 AC 64 ms
13,060 KB
testcase_06 AC 63 ms
12,944 KB
testcase_07 AC 65 ms
13,168 KB
testcase_08 AC 62 ms
13,032 KB
testcase_09 AC 63 ms
13,152 KB
testcase_10 AC 65 ms
13,048 KB
testcase_11 AC 61 ms
13,048 KB
testcase_12 AC 63 ms
13,116 KB
testcase_13 AC 65 ms
13,052 KB
testcase_14 AC 64 ms
13,080 KB
testcase_15 AC 64 ms
13,204 KB
testcase_16 AC 66 ms
13,156 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 65 ms
13,140 KB
testcase_19 AC 66 ms
12,960 KB
testcase_20 AC 66 ms
13,072 KB
testcase_21 AC 64 ms
13,080 KB
testcase_22 AC 65 ms
13,072 KB
testcase_23 AC 66 ms
13,072 KB
testcase_24 AC 66 ms
13,240 KB
testcase_25 AC 66 ms
13,148 KB
testcase_26 AC 63 ms
13,084 KB
testcase_27 AC 63 ms
13,200 KB
testcase_28 AC 63 ms
13,104 KB
testcase_29 AC 65 ms
13,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef long long Int;
#define REP(i,n) for(int (i)=0;(i)<(int)(n);++(i))

const int MAX_N = 10000000 + 10;
bool is_prime[MAX_N];

int main() {
	Int N; cin >> N;
	if (N == 1) {
		cout << "NO" << endl;
	}
	else {
		for (int i = 0; i < MAX_N; i++) is_prime[i] = true;
		is_prime[0] = is_prime[1] = false;
		for (int i = 2; i * i <= MAX_N; i++) {
			if (is_prime[i]) {
				for (int j = i * i; j < MAX_N; j += i) {
					is_prime[j] = false;
				}
			}
		}
		Int k = N;
		int count = 0;
		Int pp = 1;
		for (int i = 0; i < MAX_N; i++) if (is_prime[i]) {
			while (k % i == 0) {
				count++;
				pp *= i;
				k /= i;
			}
		}
		if (count >= 3 || count == 2 && pp != N) {
			cout << "YES" << endl;
		}
		else {
			cout << "NO" << endl;
		}
	}
}
0