結果

問題 No.36 素数が嫌い!
ユーザー elpheelphe
提出日時 2024-08-28 11:59:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 594 bytes
コンパイル時間 819 ms
コンパイル使用メモリ 74,600 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-28 11:59:55
合計ジャッジ時間 7,405 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 90 ms
6,940 KB
testcase_03 AC 86 ms
6,940 KB
testcase_04 AC 87 ms
6,940 KB
testcase_05 RE -
testcase_06 AC 87 ms
6,940 KB
testcase_07 AC 89 ms
6,944 KB
testcase_08 AC 95 ms
6,944 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 135 ms
6,944 KB
testcase_12 AC 163 ms
6,940 KB
testcase_13 AC 170 ms
6,940 KB
testcase_14 RE -
testcase_15 AC 89 ms
6,944 KB
testcase_16 AC 87 ms
6,944 KB
testcase_17 AC 86 ms
6,940 KB
testcase_18 AC 88 ms
6,940 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdint>
#include <vector>

using namespace std;

int main()
{
	cin.tie(nullptr);
	ios::sync_with_stdio(false);

	uint32_t i, j;
	vector<bool> is_prime(10'000'001, true);
	is_prime[0] = is_prime[1] = false;
	for (i = 2; i <= 10'000'000; ++i)
		if (is_prime[i] && i <= 10'000)
			for (j = i * i; j <= 10'000'000; j += i)
				is_prime[j] = false;

	uint64_t N;
	cin >> N;

	for (i = 2; static_cast<uint64_t>(i) * i <= N; ++i)
	{
		if (N % i == 0)
			if (!is_prime[i] || !is_prime[N / i])
			{
				cout << "YES\n";
				return 0;
			}
	}

	cout << "NO\n";
	return 0;
}
0