結果

問題 No.36 素数が嫌い!
ユーザー izryt(趣味)izryt(趣味)
提出日時 2016-01-14 02:48:56
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 287 ms / 5,000 ms
コード長 714 bytes
コンパイル時間 1,422 ms
コンパイル使用メモリ 159,664 KB
実行使用メモリ 14,664 KB
最終ジャッジ日時 2024-06-27 00:38:48
合計ジャッジ時間 6,088 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
13,900 KB
testcase_01 AC 88 ms
14,020 KB
testcase_02 AC 88 ms
13,384 KB
testcase_03 AC 83 ms
13,896 KB
testcase_04 AC 85 ms
14,664 KB
testcase_05 AC 86 ms
14,024 KB
testcase_06 AC 86 ms
13,768 KB
testcase_07 AC 85 ms
14,664 KB
testcase_08 AC 85 ms
14,024 KB
testcase_09 AC 84 ms
13,640 KB
testcase_10 AC 83 ms
14,152 KB
testcase_11 AC 117 ms
13,508 KB
testcase_12 AC 190 ms
13,896 KB
testcase_13 AC 287 ms
13,256 KB
testcase_14 AC 84 ms
14,660 KB
testcase_15 AC 83 ms
13,384 KB
testcase_16 AC 82 ms
13,768 KB
testcase_17 AC 81 ms
13,892 KB
testcase_18 AC 83 ms
13,896 KB
testcase_19 AC 85 ms
13,644 KB
testcase_20 AC 87 ms
14,028 KB
testcase_21 AC 82 ms
14,284 KB
testcase_22 AC 83 ms
13,384 KB
testcase_23 AC 83 ms
13,516 KB
testcase_24 AC 98 ms
14,276 KB
testcase_25 AC 83 ms
14,152 KB
testcase_26 AC 177 ms
14,152 KB
testcase_27 AC 170 ms
13,384 KB
testcase_28 AC 179 ms
13,128 KB
testcase_29 AC 180 ms
14,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;

bool p[10000001];
bool memo[10000001];

ll n;

void sieve()
{
    for (int i = 2; i <= 10000000; ++i) {
        if (!p[i]) continue;
        for (int j = i + i; j <= 10000000; j += i) p[j] = false;
    }
}

bool is_prime(ll n)
{
    for (ll i = 2; i * i <= n; ++i) if (n % i == 0) return false;
    return true;
}

int main()
{
    cin >> n;

    memset(p, true, sizeof(p));
    sieve();

    if (n == 1 || is_prime(n)) {
        cout << "NO" << endl;
        return 0;
    }

    for (ll i = 2; i * i <= n; ++i) if (n % i == 0 && (!p[i] || !is_prime(n/i))) {
        cout << "YES" << endl;
        return 0;
    }

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