結果

問題 No.36 素数が嫌い!
ユーザー izryt(趣味)izryt(趣味)
提出日時 2016-01-14 03:07:37
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 3,251 ms / 5,000 ms
コード長 666 bytes
コンパイル時間 1,414 ms
コンパイル使用メモリ 157,900 KB
実行使用メモリ 13,240 KB
最終ジャッジ日時 2024-06-27 00:40:53
合計ジャッジ時間 15,595 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
13,144 KB
testcase_01 AC 82 ms
13,080 KB
testcase_02 AC 8 ms
13,008 KB
testcase_03 AC 7 ms
13,056 KB
testcase_04 AC 7 ms
12,928 KB
testcase_05 AC 9 ms
13,056 KB
testcase_06 AC 9 ms
13,056 KB
testcase_07 AC 8 ms
13,020 KB
testcase_08 AC 8 ms
13,140 KB
testcase_09 AC 7 ms
13,104 KB
testcase_10 AC 7 ms
13,056 KB
testcase_11 AC 59 ms
13,128 KB
testcase_12 AC 194 ms
13,172 KB
testcase_13 AC 3,251 ms
12,928 KB
testcase_14 AC 179 ms
13,124 KB
testcase_15 AC 7 ms
13,056 KB
testcase_16 AC 8 ms
13,056 KB
testcase_17 AC 8 ms
13,144 KB
testcase_18 AC 7 ms
13,116 KB
testcase_19 AC 32 ms
12,928 KB
testcase_20 AC 101 ms
13,056 KB
testcase_21 AC 70 ms
13,148 KB
testcase_22 AC 91 ms
13,056 KB
testcase_23 AC 38 ms
13,056 KB
testcase_24 AC 58 ms
13,100 KB
testcase_25 AC 41 ms
13,184 KB
testcase_26 AC 1,660 ms
13,164 KB
testcase_27 AC 2,568 ms
13,048 KB
testcase_28 AC 1,601 ms
13,240 KB
testcase_29 AC 3,051 ms
13,064 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 ((!p[i] || !is_prime(n/i)) && n % i == 0) {
        cout << "YES" << endl;
        return 0;
    }

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