結果

問題 No.36 素数が嫌い!
ユーザー kpinkcatkpinkcat
提出日時 2023-10-09 03:39:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 815 bytes
コンパイル時間 1,617 ms
コンパイル使用メモリ 109,392 KB
実行使用メモリ 81,496 KB
最終ジャッジ日時 2024-07-26 18:21:25
合計ジャッジ時間 8,810 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
81,320 KB
testcase_01 AC 271 ms
81,496 KB
testcase_02 AC 412 ms
81,424 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 341 ms
81,380 KB
testcase_06 WA -
testcase_07 AC 331 ms
81,308 KB
testcase_08 AC 53 ms
81,332 KB
testcase_09 AC 37 ms
81,408 KB
testcase_10 AC 90 ms
81,344 KB
testcase_11 AC 323 ms
81,320 KB
testcase_12 AC 324 ms
81,400 KB
testcase_13 WA -
testcase_14 AC 234 ms
81,308 KB
testcase_15 AC 44 ms
81,276 KB
testcase_16 AC 329 ms
81,384 KB
testcase_17 AC 317 ms
81,308 KB
testcase_18 AC 37 ms
81,348 KB
testcase_19 AC 113 ms
81,288 KB
testcase_20 AC 283 ms
81,432 KB
testcase_21 AC 80 ms
81,432 KB
testcase_22 AC 128 ms
81,452 KB
testcase_23 AC 171 ms
81,424 KB
testcase_24 AC 296 ms
81,288 KB
testcase_25 AC 44 ms
81,312 KB
testcase_26 AC 313 ms
81,376 KB
testcase_27 AC 314 ms
81,392 KB
testcase_28 AC 312 ms
81,348 KB
testcase_29 AC 319 ms
81,412 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);
    set<ll> fac;
    prime[0] = 0;
    for (int i = 2; i <= tmp; i++){
        if (prime[i]){
            if (!fac.count(i)){
                for (int j = i+i; j < tmp; j += i){
                    prime[j] = 0;
                }
            }
            if (!(n%i)){
                cnt++;
                n /= i;
                i--;
            }
            if (cnt >= 2){
                cout << "YES" << endl;
                return 0;
            }
        }
    }
    cout << "NO" << endl;
}
0