結果

問題 No.2751 429-like Number
ユーザー karinohitokarinohito
提出日時 2024-09-12 00:13:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,078 ms / 4,000 ms
コード長 1,025 bytes
コンパイル時間 2,510 ms
コンパイル使用メモリ 217,544 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-12 00:14:01
合計ジャッジ時間 19,833 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 5 ms
6,940 KB
testcase_07 AC 685 ms
6,940 KB
testcase_08 AC 1,078 ms
6,940 KB
testcase_09 AC 1,076 ms
6,940 KB
testcase_10 AC 1,059 ms
6,940 KB
testcase_11 AC 1,059 ms
6,940 KB
testcase_12 AC 607 ms
6,940 KB
testcase_13 AC 1,048 ms
6,940 KB
testcase_14 AC 1,019 ms
6,944 KB
testcase_15 AC 16 ms
6,940 KB
testcase_16 AC 888 ms
6,940 KB
testcase_17 AC 885 ms
6,940 KB
testcase_18 AC 636 ms
6,940 KB
testcase_19 AC 653 ms
6,940 KB
testcase_20 AC 627 ms
6,940 KB
testcase_21 AC 641 ms
6,944 KB
testcase_22 AC 624 ms
6,944 KB
testcase_23 AC 648 ms
6,940 KB
testcase_24 AC 620 ms
6,944 KB
testcase_25 AC 641 ms
6,948 KB
testcase_26 AC 620 ms
6,940 KB
testcase_27 AC 646 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

bool chmin(map<pair<string, string>, ll>& M, pair<string, string> P, ll x) {
    if (!M.count(P)) {
        M[P] = x;
        return 1;
    }
    else if (M[P] > x) {
        M[P] = x;
        return 1;
    }
    return 0;
}

bool is_p(string S){
    if(S=="")return 1;
    string T=S;
    reverse(T.begin(),T.end());
    return S==T;
}

int main() {

    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    vector<bool> P(1e5+1,1);
    vector<ll> PP;
    P[0]=P[1]=0;
    for(int i=0;i<1e5+1;i++)if(P[i]){
        PP.push_back(i);
        for(int j=i*2;j<=1e5;j+=i){
            P[j]=0;
        }
    }
    int q;
    cin>>q;
    for(int i=0;i<q;i++){
        ll a;
        cin>>a;
        
        int cnt=0;
        for(auto p:PP){
            while(a%p==0){
            a/=p;
            cnt++;
            if(cnt>3)break;
            }
            if(cnt>3)break;
        }
        if(a!=1)cnt++;
        cout<<(cnt==3?"Yes":"No")<<endl;
    }

}
0