結果

問題 No.36 素数が嫌い!
ユーザー Zu_rinZu_rin
提出日時 2020-04-30 18:02:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 801 bytes
コンパイル時間 755 ms
コンパイル使用メモリ 78,772 KB
実行使用メモリ 41,984 KB
最終ジャッジ日時 2024-05-09 16:17:35
合計ジャッジ時間 6,983 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
20,736 KB
testcase_01 RE -
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 RE -
testcase_06 RE -
testcase_07 RE -
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 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 52 ms
17,920 KB
testcase_20 AC 206 ms
40,960 KB
testcase_21 AC 119 ms
32,128 KB
testcase_22 AC 126 ms
32,896 KB
testcase_23 AC 62 ms
20,992 KB
testcase_24 RE -
testcase_25 AC 69 ms
22,784 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
権限があれば一括ダウンロードができます

ソースコード

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, num) {
		if (d[i] && num % i == 0) {
			ok = true;
			break;
		}
	}
	if (ok)
		printf("YES\n");
	else
		printf("NO\n");
	return 0;
}
0