結果

問題 No.36 素数が嫌い!
ユーザー troro_kelptroro_kelp
提出日時 2019-01-03 14:43:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,770 bytes
コンパイル時間 983 ms
コンパイル使用メモリ 97,596 KB
実行使用メモリ 13,312 KB
最終ジャッジ日時 2024-05-03 01:38:23
合計ジャッジ時間 3,460 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
13,184 KB
testcase_01 AC 46 ms
13,056 KB
testcase_02 AC 43 ms
13,184 KB
testcase_03 AC 44 ms
13,184 KB
testcase_04 AC 45 ms
13,056 KB
testcase_05 AC 47 ms
13,056 KB
testcase_06 AC 50 ms
13,184 KB
testcase_07 AC 46 ms
13,184 KB
testcase_08 AC 48 ms
13,184 KB
testcase_09 AC 46 ms
13,184 KB
testcase_10 AC 46 ms
13,200 KB
testcase_11 AC 75 ms
13,056 KB
testcase_12 AC 138 ms
13,184 KB
testcase_13 AC 137 ms
13,184 KB
testcase_14 WA -
testcase_15 AC 45 ms
13,184 KB
testcase_16 AC 46 ms
13,056 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 47 ms
13,284 KB
testcase_19 AC 46 ms
13,184 KB
testcase_20 AC 47 ms
13,184 KB
testcase_21 AC 45 ms
13,280 KB
testcase_22 AC 44 ms
13,184 KB
testcase_23 AC 43 ms
13,184 KB
testcase_24 AC 57 ms
13,312 KB
testcase_25 AC 42 ms
13,184 KB
testcase_26 AC 97 ms
13,184 KB
testcase_27 AC 119 ms
13,184 KB
testcase_28 AC 98 ms
13,160 KB
testcase_29 AC 140 ms
13,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <set>
#include <cmath>
#include <stack>
#include <algorithm>
#include <iomanip>
#include <map>
#include <queue>
#include <functional>
#include <numeric>
#include <chrono>
using ll = long long;
using namespace std;

const ll MOD = 1e9 + 7;
#define REP(i, n) for (int(i) = 0; (i) < (n); ++(i))
#define repi(i, a, b) for (int i = int(a); i < int(b); ++i)
// bool operator<(const pair<int, int> &a, const pair<int, int> &b)
// {
//     if (a.first == b.first)
//         return a.second < b.second;
//     return a.first < b.first;
// };

/*unsigned int xor128(void)
{
    static unsigned int x = 123456789, y = 362436069, z = 521288629, w = 88675123;
    unsigned int t = (x ^ (x << 11));
    x = y;
    y = z;
    z = w;
    return (w = (w ^ (w >> 19)) ^ (t ^ (t >> 8)));
}
unsigned int xor128rnd(unsigned int m)
{
    return xor128() % m;
}*/

bool sieve[10000010];

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

    if (N == 1)
    {
        cout << "NO" << endl;
        return 0;
    }
    REP(i, 10000010)
    {
        sieve[i] = true;
    }

    sieve[0] = sieve[1] = false;
    for (int i = 2; i * i < 10000010; ++i)
    {
        if (sieve[i])
        {
            for (int j = 2; i * j < 10000010; ++j)
            {
                sieve[i * j] = false;
            }
        }
    }

    int divp = 0;

    for (ll i = 2; i * i <= N; ++i)
    {
        if (N % i == 0)
        {
            if (sieve[i])
                divp++;
            else
            {
                cout << "YES" << endl;
                return 0;
            }
        }

        if (divp == 2)
        {
            cout << "YES" << endl;
            return 0;
        }
    }

    cout << "NO" << endl;
    return 0;
}
0