結果

問題 No.36 素数が嫌い!
ユーザー kpinkcatkpinkcat
提出日時 2023-10-09 03:59:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 324 ms / 5,000 ms
コード長 860 bytes
コンパイル時間 1,188 ms
コンパイル使用メモリ 106,712 KB
実行使用メモリ 81,520 KB
最終ジャッジ日時 2024-07-26 18:21:32
合計ジャッジ時間 5,943 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
81,336 KB
testcase_01 AC 114 ms
81,304 KB
testcase_02 AC 89 ms
81,388 KB
testcase_03 AC 92 ms
81,308 KB
testcase_04 AC 92 ms
81,388 KB
testcase_05 AC 91 ms
81,276 KB
testcase_06 AC 265 ms
81,152 KB
testcase_07 AC 317 ms
81,344 KB
testcase_08 AC 30 ms
81,332 KB
testcase_09 AC 30 ms
81,460 KB
testcase_10 AC 37 ms
81,300 KB
testcase_11 AC 324 ms
81,404 KB
testcase_12 AC 315 ms
81,316 KB
testcase_13 AC 318 ms
81,460 KB
testcase_14 AC 244 ms
81,424 KB
testcase_15 AC 31 ms
81,328 KB
testcase_16 AC 86 ms
81,372 KB
testcase_17 AC 320 ms
81,300 KB
testcase_18 AC 31 ms
81,304 KB
testcase_19 AC 30 ms
81,312 KB
testcase_20 AC 39 ms
81,344 KB
testcase_21 AC 29 ms
81,384 KB
testcase_22 AC 102 ms
81,316 KB
testcase_23 AC 68 ms
81,480 KB
testcase_24 AC 68 ms
81,452 KB
testcase_25 AC 37 ms
81,348 KB
testcase_26 AC 83 ms
81,416 KB
testcase_27 AC 225 ms
81,520 KB
testcase_28 AC 82 ms
81,276 KB
testcase_29 AC 257 ms
81,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<iomanip>
#include<string>
#include<algorithm>
#include<vector>
#include<set>
#include<list>
#include<queue>
#include<math.h>
#include<bitset>
using ll = long long;
using namespace std;

int main(){
    ll n, tmp, cnt = 0;
    cin >> n;
    tmp = 10000000;
    vector<ll> prime(tmp, 1);
    vector<ll> fac;
    prime[0] = 0;
    for (int i = 2; i <= tmp; i++){
        if (prime[i]){
            if (!fac.size()){
                for (int j = i+i; j < tmp; j += i){
                    prime[j] = 0;
                }
            }
            if (!(n%i)){
                cnt++;
                fac.push_back(i);
                n /= i;
                i--;
            }
            if (cnt >= 2 && n != 1){
                cout << "YES" << endl;
                return 0;
            }
        }
    }
    cout << "NO" << endl;
}
0