結果

問題 No.2751 429-like Number
ユーザー Today03Today03
提出日時 2024-05-17 08:33:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,468 bytes
コンパイル時間 2,319 ms
コンパイル使用メモリ 207,244 KB
実行使用メモリ 11,624 KB
最終ジャッジ日時 2024-05-17 08:33:31
合計ジャッジ時間 11,838 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int INF = 1e9 + 10;
const ll INFL = 4e18;

int main() {
    int Q;
    cin >> Q;

    vector<bool> is_prime(1000000, true);
    is_prime[0] = is_prime[1] = false;
    for (int i = 2; i * i < 1000000; i++) {
        if (is_prime[i]) {
            for (int j = i * 2; j < 1000000; j += i) {
                is_prime[j] = false;
            }
        }
    }
    vector<ll> primes;
    for (int i = 2; i < 1000000; i++) {
        if (is_prime[i]) {
            primes.push_back(i);
        }
    }

    while (Q--) [&] {
        ll A;
        cin >> A;

        for (int i = 0; i < (int)primes.size(); i++) {
            ll x = primes[i];

            if (x * x * x > A) {
                break;
            }

            if (A % x == 0) {
                for (int j = i; j < (int)primes.size(); j++) {
                    ll y = primes[j];
                    if (A % (x * y) == 0) {
                        ll z = A / (x * y);

                        for (int k = 0; k < (int)primes.size(); k++) {
                            if (primes[k] != z && z % primes[k] == 0) {
                                cout << "No\n";
                                return;
                            }
                        }

                        cout << "Yes" << endl;
                        return;
                    }
                }
            }
        }

        cout << "No\n";
    }();
}
0