結果

問題 No.2379 Burnside's Theorem
ユーザー bortikbortik
提出日時 2023-07-15 01:49:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 9 ms / 2,000 ms
コード長 840 bytes
コンパイル時間 1,740 ms
コンパイル使用メモリ 169,748 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-16 10:28:45
合計ジャッジ時間 2,526 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
6,816 KB
testcase_01 AC 8 ms
6,944 KB
testcase_02 AC 7 ms
6,940 KB
testcase_03 AC 8 ms
6,944 KB
testcase_04 AC 9 ms
6,940 KB
testcase_05 AC 8 ms
6,944 KB
testcase_06 AC 9 ms
6,940 KB
testcase_07 AC 8 ms
6,940 KB
testcase_08 AC 9 ms
6,944 KB
testcase_09 AC 8 ms
6,940 KB
testcase_10 AC 8 ms
6,944 KB
testcase_11 AC 7 ms
6,944 KB
testcase_12 AC 9 ms
6,944 KB
testcase_13 AC 9 ms
6,940 KB
testcase_14 AC 9 ms
6,940 KB
testcase_15 AC 8 ms
6,944 KB
testcase_16 AC 8 ms
6,940 KB
testcase_17 AC 9 ms
6,940 KB
testcase_18 AC 9 ms
6,940 KB
testcase_19 AC 8 ms
6,940 KB
testcase_20 AC 8 ms
6,940 KB
testcase_21 AC 8 ms
6,944 KB
testcase_22 AC 8 ms
6,940 KB
testcase_23 AC 8 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

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[1000001] = {};
void sieve(){
    for(int i = 2; i < 1000001; i++){
        if(!f[i]){
            primes.push_back(i);
            int j = 2;
            while(j*i < 1000001){
                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 == 1) break;
    }
    if(n>1) cnt++;
    if(cnt >= 3){
        cout << "No";
    }else {
        cout << "Yes";
    }
}

int main(){

    solve();

    return 0;
}
0