結果

問題 No.36 素数が嫌い!
ユーザー goodbatongoodbaton
提出日時 2015-07-29 23:28:16
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 1,231 bytes
コンパイル時間 751 ms
コンパイル使用メモリ 75,640 KB
実行使用メモリ 13,156 KB
最終ジャッジ日時 2024-07-17 22:29:08
合計ジャッジ時間 9,584 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 50 ms
12,928 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 44 ms
13,128 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 76 ms
13,088 KB
testcase_12 AC 146 ms
13,064 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 41 ms
13,156 KB
testcase_16 AC 43 ms
13,040 KB
testcase_17 AC 43 ms
12,932 KB
testcase_18 RE -
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 <cstdio>
#include <cstdlib>
#include <iostream>
#include <string>
#include <cmath>
#include <algorithm>
#include <vector>
#include <queue>
#include <stack>
#include <map>
#include <set>
#include <cstring>

typedef long long ll;
using namespace std;

#define mod 1000003
#define INF 10000000
#define LLINF 2000000000000000000LL

#define SIZE 100000

const int MAX_P = 10000000;
bool prime[MAX_P+1];
void primen(void){
    for(int i=2;i<=MAX_P;i++)
        prime[i]=true;
    
    for(int i=2;i*i<=MAX_P;i++)
        if(prime[i])
            for(int j=i;i*j<=MAX_P;j++)
                prime[i*j]=false;
    
}

vector<ll> factor(ll n){
    vector<ll> ret,ret2;
    
    for(ll i=1;i*i<=n;i++){
        if(n%i==0){
            ret.push_back(i);
            
            if(i*i<n)
                ret.push_back(n/i);
        }
    }
    
    for(ll i=0;i<ret2.size();i++){
        ret.push_back(ret2[ret2.size()-1-i]);
    }
    
    return ret;
}

int main(){
    ll n;
    vector<ll> fac;
    
    primen();
    
    cin >> n;
    
    fac = factor(n);
    
    for(int i=1;i<fac.size()-1;i++){
        if(!prime[fac[i]]){
            puts("YES");
            return 0;
        }
    }
    
    puts("NO");
    return 0;
}
0