結果

問題 No.36 素数が嫌い!
ユーザー tashikanitashikani
提出日時 2015-06-14 15:13:05
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 1,984 bytes
コンパイル時間 1,140 ms
コンパイル使用メモリ 91,904 KB
実行使用メモリ 814,060 KB
最終ジャッジ日時 2023-09-21 01:25:55
合計ジャッジ時間 4,009 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <vector>
#include <list>
#include <map>
#include <set>
#include <deque>
#include <stack>
#include <queue>
#include <bitset>
#include <algorithm>
#include <functional>
#include <numeric>
#include <utility>
#include <sstream>
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <cctype>
#include <string>
#include <cstring>
#include <ctime>

using namespace std;

inline int toInt(string s) {int v; istringstream sin(s);sin>>v;return v;}
template<class T> inline string toString(T x) {ostringstream sout;sout<<x;return sout.str();}

typedef vector<int> VI;
typedef vector<VI> VVI;
typedef vector<string> VS;
typedef pair<int, int> PII;
typedef long long LL;

#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define REP(i,n)  FOR(i,0,n)

#define ALL(a)  (a).begin(),(a).end()
#define RALL(a) (a).rbegin(), (a).rend()
#define PB push_back
#define MP make_pair
#define SZ(a) int((a).size())
#define EACH(i,c) for(typeof((c).begin()) i=(c).begin(); i!=(c).end(); ++i)
#define EXIST(s,e) ((s).find(e)!=(s).end())
#define SORT(c) sort((c).begin(),(c).end())

const double EPS = 1e-10;
const double PI  = acos(-1.0);

#define CLR(a) memset((a), 0 ,sizeof(a))

#define dump(x)  cerr << #x << " = " << (x) << endl;
#define debug(x) cerr << #x << " = " << (x) << " (L" << __LINE__ << ")" << " " << __FILE__ << endl;

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

	unsigned long long N;
	cin >> N;

	unsigned long long m = N / 2 + 1;

	vector<bool> isPrime(m + 1, true);
	vector<unsigned long long> prime;
	isPrime[0] = isPrime[1] = false;
	for(unsigned long long i = 0; i < m + 1; i++){
		if(isPrime[i]){
			prime.push_back(i);
			for(unsigned long long j = 2 * i; j * i < m + 1; j += i){
				isPrime[j] = false;
			}
		}
	}


	int t = 0;
	for(auto i: prime){
		while(N % i == 0){
			N /= i;
			t++;
			//cout << i << endl;
		}
		if(t >= 3) break;
	}

	if(t >= 3) cout << "YES" << endl;
	else cout << "NO" << endl;


	return 0;
}
0