結果

問題 No.2751 429-like Number
ユーザー t98slidert98slider
提出日時 2024-05-16 05:45:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 826 bytes
コンパイル時間 2,227 ms
コンパイル使用メモリ 206,044 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-16 05:45:08
合計ジャッジ時間 5,878 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 WA -
testcase_07 AC 5 ms
6,940 KB
testcase_08 AC 5 ms
6,940 KB
testcase_09 AC 12 ms
6,944 KB
testcase_10 AC 576 ms
6,940 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 126 ms
6,940 KB
testcase_14 AC 272 ms
6,940 KB
testcase_15 AC 10 ms
6,944 KB
testcase_16 AC 51 ms
6,944 KB
testcase_17 AC 65 ms
6,944 KB
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;
using ll = long long;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    vector<bool> tb(50001, true);
    vector<int> p;
    p.reserve(5133);
    tb[0] = tb[1] = false;
    p.push_back(2);
    for(int i = 4; i <= 50000; i += 2) tb[i] = false;
    for(int i = 3; i <= 50000; i += 2){
        if(!tb[i]) continue;
        p.emplace_back(i);
        for(int j = i, d = 2 * i; j <= 50000; j += d) tb[j] = false;
    }
    
    int Q;
    cin >> Q;
    while(Q--){
        ll v;
        cin >> v;
        int cnt = 0;
        for(int i = 0; i < 5133 && p[i] * p[i] <= v; i++){
            while(v % p[i] == 0){
                v /= p[i];
                cnt++;
            }
        }
        if(v != 1) cnt++;
        cout << (cnt == 3 ? "Yes" : "No") << '\n';
    }
}
0