結果

問題 No.36 素数が嫌い!
ユーザー ManjushriMitraManjushriMitra
提出日時 2024-07-25 18:10:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 731 bytes
コンパイル時間 1,817 ms
コンパイル使用メモリ 169,336 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-25 18:10:19
合計ジャッジ時間 9,527 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 77 ms
6,940 KB
testcase_03 AC 75 ms
6,944 KB
testcase_04 AC 75 ms
6,940 KB
testcase_05 RE -
testcase_06 AC 76 ms
6,944 KB
testcase_07 AC 76 ms
6,940 KB
testcase_08 AC 76 ms
6,940 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 107 ms
6,940 KB
testcase_12 AC 178 ms
6,944 KB
testcase_13 AC 174 ms
6,940 KB
testcase_14 RE -
testcase_15 AC 77 ms
6,944 KB
testcase_16 AC 76 ms
6,940 KB
testcase_17 AC 81 ms
6,940 KB
testcase_18 AC 76 ms
6,944 KB
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<bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,m,n) for(int i=m; i<n; ++i)
#define repl(i,m,n) for(ll i=m; i<n; ++i)

int main(){
    ll N;
    cin >> N;

    const ll LIM = 10000010;
    vector<bool> is_prime(LIM, true);
    is_prime[0] = is_prime[1] = false;

    for(ll i = 2LL; i <= LIM; ++i){
        if(!is_prime[i]) continue;
        for(ll j = 2*i; j <= LIM; j += i){
            is_prime[j] = false;
        } 
    }

    for(ll i = 2LL; i*i <= N; ++i){
        if(N % i == 0LL){
            ll j = N / i;
            if(!is_prime[i] || !is_prime[j]){
                cout << "YES" << endl;
                return 0;
            }
        }
    }
    cout << "NO" << endl;
    return 0;
}
0