結果

問題 No.2751 429-like Number
ユーザー FplusFplusFFplusFplusF
提出日時 2024-05-10 21:51:08
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,975 ms / 4,000 ms
コード長 1,569 bytes
コンパイル時間 2,550 ms
コンパイル使用メモリ 249,244 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-10 21:51:37
合計ジャッジ時間 21,118 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 4 ms
6,948 KB
testcase_06 AC 5 ms
6,944 KB
testcase_07 AC 652 ms
6,940 KB
testcase_08 AC 1,008 ms
6,940 KB
testcase_09 AC 1,008 ms
6,940 KB
testcase_10 AC 1,002 ms
6,940 KB
testcase_11 AC 1,975 ms
6,940 KB
testcase_12 AC 832 ms
6,940 KB
testcase_13 AC 999 ms
6,944 KB
testcase_14 AC 986 ms
6,944 KB
testcase_15 AC 5 ms
6,940 KB
testcase_16 AC 939 ms
6,940 KB
testcase_17 AC 1,003 ms
6,944 KB
testcase_18 AC 748 ms
6,944 KB
testcase_19 AC 730 ms
6,944 KB
testcase_20 AC 730 ms
6,940 KB
testcase_21 AC 709 ms
6,940 KB
testcase_22 AC 761 ms
6,940 KB
testcase_23 AC 758 ms
6,940 KB
testcase_24 AC 732 ms
6,944 KB
testcase_25 AC 736 ms
6,944 KB
testcase_26 AC 717 ms
6,944 KB
testcase_27 AC 746 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using pll=pair<ll,ll>;
using tll=tuple<ll,ll,ll>;
using ld=long double;
const ll INF=(1ll<<60);
#define rep(i,n) for (ll i=0;i<(ll)(n);i++)
#define all(v) v.begin(),v.end()
template<class T> inline bool chmin(T &a,T b){
    if(a>b){
        a=b;
        return true;
    }
    return false;
}
template<class T> inline bool chmax(T &a,T b){
    if(a<b){
        a=b;
        return true;
    }
    return false;
}
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    ll n=1e5+1;
    vector<ll> p(n,1);
    for(ll i=2;i<n;i++){
        if(!p[i]) continue;
        for(ll j=i+i;j<n;j+=i) p[j]=0;
    }
    vector<ll> v;
    for(ll i=2;i<n;i++){
        if(p[i]) v.push_back(i);
    }
    ll q;
    cin >> q;
    while(q--){
        ll a;
        cin >> a;
        ll x=a;
        vector<ll> now;
        ll cnt=0;
        for(auto i:v){
            while(x%i==0){
                cnt++;
                now.push_back(i);
                if(3<cnt) break;
                x/=i;
            }
            if(3<cnt) break;
        }
        bool yn=false;
        if(cnt==2){
            a/=now[0];
            a/=now[1];
            bool ok=true;
            for(ll i=2;i*i<=a;i++){
                if(a%i==0){
                    ok=false;
                    break;
                }
            }
            if(a!=1&&ok) yn=true;
        }
        if(cnt==3){
            if(now[0]*now[1]*now[2]==a) yn=true;
        }
        if(yn) cout << "Yes\n";
        else cout << "No\n";
    }
}
0