結果

問題 No.36 素数が嫌い!
ユーザー nenuonnenuon
提出日時 2017-06-18 17:50:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 426 ms / 5,000 ms
コード長 1,126 bytes
コンパイル時間 1,014 ms
コンパイル使用メモリ 97,156 KB
実行使用メモリ 54,948 KB
最終ジャッジ日時 2024-06-27 01:08:22
合計ジャッジ時間 12,586 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 301 ms
54,820 KB
testcase_01 AC 311 ms
54,756 KB
testcase_02 AC 300 ms
54,788 KB
testcase_03 AC 304 ms
54,712 KB
testcase_04 AC 312 ms
54,712 KB
testcase_05 AC 300 ms
54,892 KB
testcase_06 AC 303 ms
54,808 KB
testcase_07 AC 308 ms
54,744 KB
testcase_08 AC 304 ms
54,732 KB
testcase_09 AC 305 ms
54,800 KB
testcase_10 AC 306 ms
54,708 KB
testcase_11 AC 340 ms
54,756 KB
testcase_12 AC 418 ms
54,672 KB
testcase_13 AC 426 ms
54,904 KB
testcase_14 AC 308 ms
54,712 KB
testcase_15 AC 304 ms
54,704 KB
testcase_16 AC 307 ms
54,652 KB
testcase_17 AC 303 ms
54,652 KB
testcase_18 AC 301 ms
54,784 KB
testcase_19 AC 302 ms
54,780 KB
testcase_20 AC 315 ms
54,832 KB
testcase_21 AC 302 ms
54,764 KB
testcase_22 AC 301 ms
54,740 KB
testcase_23 AC 309 ms
54,764 KB
testcase_24 AC 316 ms
54,772 KB
testcase_25 AC 305 ms
54,840 KB
testcase_26 AC 422 ms
54,720 KB
testcase_27 AC 401 ms
54,788 KB
testcase_28 AC 406 ms
54,736 KB
testcase_29 AC 420 ms
54,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cstdio>
#include <iostream>
#include <map>
#include <cmath>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <vector>
#include <stdlib.h>
#include <stdio.h>
#include <bitset>
using namespace std;

#define PI         acos(-1.0)
#define FOR(I,A,B) for(long long I = (A); I < (B); ++I)

typedef long long ll;

map<ll, bool> MAP;
bool used[10000010];

void prime(){
    FOR(i,2,10000010){
        if(used[i]) continue;
        MAP[i] = true;
        ll j = i;
        while(j<10000010){
            used[j] = true;
            j += i;
        }
    }
}

bool isPrime(ll x){
    FOR(i,2,(ll)sqrt(x)+1)
        if(x % i == 0) return false;
    return true;
}

int main(){
    FOR(i,0,10000010) used[i] = false;
    prime();
    ll n;
    cin >> n;
    bool ok = false;
    FOR(i,2,(ll)sqrt(n)+1){
        if(n % i == 0 && MAP.count(i) == 0){
            ok = true;
            break;
        }
        if(n % i == 0 && isPrime(n / i) == 0){
            ok = true;
            break;
        }
    }
    cout << (ok ? "YES" : "NO") << endl;
    return 0;
}
0