結果

問題 No.36 素数が嫌い!
ユーザー matsukin1111matsukin1111
提出日時 2019-04-03 22:23:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,294 bytes
コンパイル時間 725 ms
コンパイル使用メモリ 92,952 KB
実行使用メモリ 10,140 KB
最終ジャッジ日時 2024-06-02 12:03:43
合計ジャッジ時間 8,490 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
6,816 KB
testcase_01 AC 78 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 32 ms
5,376 KB
testcase_12 AC 97 ms
5,376 KB
testcase_13 AC 96 ms
5,376 KB
testcase_14 AC 61 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 38 ms
5,376 KB
testcase_20 AC 98 ms
5,376 KB
testcase_21 AC 72 ms
5,376 KB
testcase_22 AC 75 ms
5,376 KB
testcase_23 AC 46 ms
5,376 KB
testcase_24 AC 65 ms
5,376 KB
testcase_25 AC 50 ms
5,376 KB
testcase_26 TLE -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cstdio>
#include<cstring>
#include <cstdlib>  
#include <cmath>   
#include<cctype>
#include<string>
#include<set>
#include <map>
#include<algorithm>
#include <functional>
#include<vector>
#include<climits>
#include<stack>
#include<queue>
#include <deque>
#include <climits>
#include <typeinfo>
#include <utility> 
#define all(x) (x).begin(),(x).end()
#define rep(i,m,n) for(int i = m;i < n;++i)
#define pb push_back
#define fore(i,a) for(auto &i:a)
#define rrep(i,m,n) for(int i = m;i >= n;--i)
#define INF INT_MAX/2
using namespace std;
using ll = long long;
using R = double;
const ll MOD = 1e9 + 7;
const ll inf = 1LL << 50;
struct edge { ll from; ll to; ll cost; };


ll n;
vector<ll>dev;

bool prime(ll n) {
	if (n == 1) {
		return false;
	}
	for (int i = 2; i*i <= n; i++) {
		if (n%i == 0) {
			return false;
		}
	}
	return true;
}


void devisor(ll n) {
	for (ll i = 1; i*i <= n; i++) {
		if (n%i == 0) {
			if (i == n / i) {
				dev.push_back(i);
			}
			else {
				dev.push_back(i);
				dev.push_back(n / i);
			}
		}
	}
}

int main(){
	cin >> n;
	devisor(n);

	int ok = 0;
	rep(i, 0, dev.size()) {
		if (dev[i] != n && dev[i] != 1 && !prime(dev[i])) {
			ok = 1;
			break;
		}
	}

	if (ok)cout << "YES" << endl;
	else cout << "NO" << endl;

	return 0;
}
0