結果

問題 No.2379 Burnside's Theorem
ユーザー bortikbortik
提出日時 2023-07-15 01:47:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 843 bytes
コンパイル時間 1,613 ms
コンパイル使用メモリ 168,644 KB
実行使用メモリ 19,064 KB
最終ジャッジ日時 2024-09-16 10:27:01
合計ジャッジ時間 4,995 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 110 ms
17,392 KB
testcase_02 AC 111 ms
17,264 KB
testcase_03 AC 105 ms
17,260 KB
testcase_04 AC 102 ms
17,268 KB
testcase_05 AC 108 ms
17,392 KB
testcase_06 AC 109 ms
17,268 KB
testcase_07 AC 101 ms
17,264 KB
testcase_08 AC 104 ms
17,268 KB
testcase_09 AC 105 ms
17,264 KB
testcase_10 AC 106 ms
17,144 KB
testcase_11 AC 104 ms
17,264 KB
testcase_12 AC 105 ms
17,220 KB
testcase_13 AC 108 ms
17,264 KB
testcase_14 AC 109 ms
17,388 KB
testcase_15 AC 108 ms
17,268 KB
testcase_16 AC 108 ms
17,268 KB
testcase_17 AC 109 ms
17,264 KB
testcase_18 WA -
testcase_19 AC 110 ms
17,268 KB
testcase_20 AC 110 ms
17,268 KB
testcase_21 AC 110 ms
17,268 KB
testcase_22 AC 109 ms
17,260 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define ll long long
#define rep(i, a, n) for (int i = (int)(a); i < (int)(n); i++)
#define rrep(i, n, a) for (int i = (int)(n); i >= (int)(a); i--)

vector<int> primes;
bool f[10000001] = {};
void sieve(){
    for(int i = 2; i < 10000001; i++){
        if(!f[i]){
            primes.push_back(i);
            int j = 2;
            while(j*i < 10000001){
                f[j*i] = true;
                j++;
            }
        }
    }
}

void solve(){
    ll n; cin >> n;
    int cnt = 0;
    sieve();
    for(int x : primes){
        if(n % x == 0){
            cnt++;
            while(n%x==0) n /= x;
        }
        if(n == 0) break;
    }
    if(n>0) cnt++;
    if(cnt >= 3){
        cout << "No";
    }else {
        cout << "Yes";
    }
}

int main(){

    solve();

    return 0;
}
0