結果

問題 No.36 素数が嫌い!
ユーザー izryt(趣味)izryt(趣味)
提出日時 2016-01-14 03:06:31
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 285 ms / 5,000 ms
コード長 666 bytes
コンパイル時間 1,287 ms
コンパイル使用メモリ 158,748 KB
実行使用メモリ 13,260 KB
最終ジャッジ日時 2024-06-27 00:39:31
合計ジャッジ時間 3,977 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
13,096 KB
testcase_01 AC 67 ms
13,068 KB
testcase_02 AC 5 ms
13,184 KB
testcase_03 AC 5 ms
13,056 KB
testcase_04 AC 6 ms
13,184 KB
testcase_05 AC 5 ms
13,184 KB
testcase_06 AC 5 ms
13,184 KB
testcase_07 AC 5 ms
13,076 KB
testcase_08 AC 5 ms
13,164 KB
testcase_09 AC 6 ms
12,928 KB
testcase_10 AC 5 ms
13,076 KB
testcase_11 AC 59 ms
13,148 KB
testcase_12 AC 195 ms
12,996 KB
testcase_13 AC 285 ms
13,056 KB
testcase_14 AC 49 ms
13,184 KB
testcase_15 AC 5 ms
13,108 KB
testcase_16 AC 6 ms
13,056 KB
testcase_17 AC 6 ms
13,056 KB
testcase_18 AC 5 ms
13,184 KB
testcase_19 AC 29 ms
13,260 KB
testcase_20 AC 93 ms
13,164 KB
testcase_21 AC 64 ms
13,128 KB
testcase_22 AC 68 ms
13,056 KB
testcase_23 AC 35 ms
13,056 KB
testcase_24 AC 54 ms
13,184 KB
testcase_25 AC 39 ms
13,056 KB
testcase_26 AC 141 ms
13,184 KB
testcase_27 AC 161 ms
13,076 KB
testcase_28 AC 140 ms
13,056 KB
testcase_29 AC 180 ms
13,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;

bool p[10000001];

ll n;

void sieve()
{
    for (ll i = 2; i * i <= n; ++i) {
        if (p[i]) for (ll j = i + i; j * j <= n; 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