結果

問題 No.2751 429-like Number
ユーザー pia019pia019
提出日時 2024-05-10 22:19:46
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 954 bytes
コンパイル時間 2,907 ms
コンパイル使用メモリ 247,224 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-10 22:19:57
合計ジャッジ時間 8,959 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 4 ms
6,940 KB
testcase_06 WA -
testcase_07 AC 47 ms
6,940 KB
testcase_08 AC 24 ms
6,940 KB
testcase_09 AC 156 ms
6,940 KB
testcase_10 AC 150 ms
6,944 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 142 ms
6,944 KB
testcase_14 AC 150 ms
6,944 KB
testcase_15 AC 21 ms
6,940 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int INF = 1<<30;
const long long INFLL = 1LL<<60;
const int MOD = 998244353;

ll q;
vector<ll> primes;

bool is_prime(ll n){
    if (n < 2) return false;
    for (int i = 2; i < min((ll)sqrt(n) + 5, n); i++){
        if (n % i == 0) return false;
    }
    return true;
}

void make_primes(){
    for (int i=2; i < 10000; i++){
        if (is_prime(i)) primes.push_back(i);
    }
}

bool is_429(ll n){
    int cnt = 0;
    for (int p : primes){
        while (n % p == 0){
            cnt++;
            n /= p;
            if (cnt == 2) break;
        }
        if (cnt == 2){
            //cout << n << endl;
            if (is_prime(n)) return true;
            else return false;
        }
    }
    return false;
}

int main() {
    cin >> q;
    make_primes();
    while (q--){
        ll a; cin >> a;
        cout << (is_429(a) ? "Yes" : "No") << endl;
    }
    return 0;
}
0