結果

問題 No.2379 Burnside's Theorem
ユーザー HIcoderHIcoder
提出日時 2023-07-15 17:23:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 11 ms / 2,000 ms
コード長 911 bytes
コンパイル時間 966 ms
コンパイル使用メモリ 105,856 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-17 03:38:42
合計ジャッジ時間 1,924 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<iostream>
#include<set>
#include<algorithm>
#include<vector>
#include<string>
#include<set>
#include<map>
#include<numeric>
#include<queue>
#include<cmath>
using namespace std;
typedef long long ll;
const ll INF=1LL<<60;
typedef pair<int,int> P;
typedef pair<int,P> PP;
const ll MOD=1e9+7;
const double PI=acos(-1);


int main(){
    ll N;
    cin>>N;

    if(N==1){
        cout<<"Yes"<<endl;
        return 0;
    }

    vector<pair<ll,ll>> ans;
    for(ll p=2;p*p<=N;p++){
        if(N%p==0){
            pair<ll,ll> tmp;
            tmp.first=p;
            tmp.second=0;
            while(N%p==0){
                N/=p;
                tmp.second++;

            }
            ans.push_back(tmp);
        }
    }

    if(N>1){
        ans.push_back(make_pair(N,1));
        N/=N;
    }

    if(0<ans.size() && ans.size()<=2){
        cout<<"Yes"<<endl;
    }else{
        cout<<"No"<<endl;
    }
}
0