結果

問題 No.36 素数が嫌い!
ユーザー PachicobuePachicobue
提出日時 2017-07-03 03:44:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 118 ms / 5,000 ms
コード長 1,425 bytes
コンパイル時間 1,721 ms
コンパイル使用メモリ 169,304 KB
実行使用メモリ 22,996 KB
最終ジャッジ日時 2024-06-27 01:10:02
合計ジャッジ時間 6,120 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
22,048 KB
testcase_01 AC 115 ms
21,808 KB
testcase_02 AC 114 ms
21,696 KB
testcase_03 AC 113 ms
22,772 KB
testcase_04 AC 113 ms
21,568 KB
testcase_05 AC 118 ms
21,928 KB
testcase_06 AC 112 ms
21,812 KB
testcase_07 AC 118 ms
22,996 KB
testcase_08 AC 113 ms
21,644 KB
testcase_09 AC 115 ms
21,624 KB
testcase_10 AC 116 ms
22,744 KB
testcase_11 AC 110 ms
21,496 KB
testcase_12 AC 111 ms
22,208 KB
testcase_13 AC 110 ms
21,792 KB
testcase_14 AC 112 ms
21,676 KB
testcase_15 AC 110 ms
22,740 KB
testcase_16 AC 110 ms
22,096 KB
testcase_17 AC 112 ms
22,052 KB
testcase_18 AC 114 ms
22,500 KB
testcase_19 AC 112 ms
21,512 KB
testcase_20 AC 111 ms
22,128 KB
testcase_21 AC 113 ms
22,776 KB
testcase_22 AC 111 ms
21,660 KB
testcase_23 AC 113 ms
21,788 KB
testcase_24 AC 111 ms
22,364 KB
testcase_25 AC 112 ms
21,804 KB
testcase_26 AC 112 ms
22,796 KB
testcase_27 AC 112 ms
21,492 KB
testcase_28 AC 111 ms
21,624 KB
testcase_29 AC 112 ms
21,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define show(x) cout << #x << " = " << x << endl

using namespace std;
using ll = long long;
using pii = pair<int, int>;
using vi = vector<int>;

template <typename T>
ostream& operator<<(ostream& os, const vector<T>& v)
{
    os << "sz=" << v.size() << "\n[";
    for (const auto& p : v) {
        os << p << ",";
    }
    os << "]\n";
    return os;
}

template <typename S, typename T>
ostream& operator<<(ostream& os, const pair<S, T>& p)
{
    os << "(" << p.first << "," << p.second
       << ")";
    return os;
}


constexpr ll MOD = 1e9 + 7;

template <typename T>
constexpr T INF = numeric_limits<T>::max() / 100;

constexpr ll MAX = 1e14;
constexpr ll SQRT = 1e7;
bool isprime[SQRT];
vector<ll> prime;

int main()
{
    ll N;
    cin >> N;
    for (ll i = 0; i < SQRT; i++) {
        isprime[i] = true;
    }
    for (ll i = 2; i < SQRT; i++) {
        if (isprime[i]) {
            for (ll j = 2; i * j <= SQRT; j++) {
                isprime[i * j] = false;
            }
        }
    }
    for (ll i = 2; i < SQRT; i++) {
        if (isprime[i]) {
            prime.push_back(i);
        }
    }

    int num = 0;
    for (const ll p : prime) {
        while (N % p == 0) {
            N /= p;
            num++;
        }
    }
    if (N > 1) {
        num++;
    }

    if (num > 2) {
        cout << "YES" << endl;
    } else {
        cout << "NO" << endl;
    }
    return 0;
}
0