結果

問題 No.36 素数が嫌い!
ユーザー Zu_rinZu_rin
提出日時 2020-04-30 18:03:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 806 bytes
コンパイル時間 786 ms
コンパイル使用メモリ 78,784 KB
実行使用メモリ 40,960 KB
最終ジャッジ日時 2024-05-09 16:18:18
合計ジャッジ時間 6,223 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
20,736 KB
testcase_01 WA -
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 100 ms
15,488 KB
testcase_12 AC 453 ms
40,960 KB
testcase_13 AC 451 ms
40,960 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 86 ms
17,920 KB
testcase_20 AC 347 ms
40,832 KB
testcase_21 AC 242 ms
32,000 KB
testcase_22 AC 257 ms
32,896 KB
testcase_23 AC 124 ms
20,992 KB
testcase_24 WA -
testcase_25 AC 129 ms
22,784 KB
testcase_26 AC 233 ms
26,112 KB
testcase_27 AC 373 ms
35,584 KB
testcase_28 AC 240 ms
25,728 KB
testcase_29 AC 437 ms
39,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <list>
#include <queue>
#include <cmath>
#include <algorithm>
#define rep(i, n) for(i = 0; i < (n); i++)
#define chmax(x, y) x = max(x, y)
#define chmin(x, y) x = min(x, y)
#define MOD 1000000007
#define PI 3.14159265358979323846
#define INF 1 << 30

using namespace std;
typedef long long ll;
typedef pair<int, int> pp;

void Eratos(vector<int> & d) {
	int i, j;
	for (i = 2; i < d.size(); i++) {
		if (!d[i]) {
			for (j = i << 1; j < d.size(); j += i) {
				d[j] = 1;
			}
		}
	}
	return;
}

int main(void) {
	int i, ok = 0;
	ll num;
	cin >> num;
	vector<int> d(sqrt(num) + 1, 0);
	Eratos(d);
	rep(i, d.size()) {
		if (d[i] && num % i == 0) {
			ok = true;
			break;
		}
	}
	if (ok)
		printf("YES\n");
	else
		printf("NO\n");
	return 0;
}
0