結果
問題 | No.2751 429-like Number |
ユーザー | Tatsu_mr |
提出日時 | 2024-05-11 10:38:17 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,871 bytes |
コンパイル時間 | 2,443 ms |
コンパイル使用メモリ | 210,048 KB |
実行使用メモリ | 10,148 KB |
最終ジャッジ日時 | 2024-05-11 10:38:28 |
合計ジャッジ時間 | 10,478 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,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 34 ms
6,944 KB |
testcase_08 | AC | 39 ms
6,940 KB |
testcase_09 | AC | 29 ms
6,940 KB |
testcase_10 | AC | 96 ms
6,944 KB |
testcase_11 | AC | 194 ms
6,940 KB |
testcase_12 | AC | 153 ms
6,940 KB |
testcase_13 | AC | 251 ms
6,940 KB |
testcase_14 | AC | 535 ms
6,944 KB |
testcase_15 | AC | 101 ms
6,940 KB |
testcase_16 | AC | 88 ms
6,944 KB |
testcase_17 | AC | 85 ms
6,940 KB |
testcase_18 | AC | 131 ms
6,944 KB |
testcase_19 | AC | 131 ms
6,940 KB |
testcase_20 | AC | 131 ms
6,940 KB |
testcase_21 | AC | 135 ms
6,944 KB |
testcase_22 | TLE | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; template <class T> T modpow(T a, T b, T mod) { T cur = a, res = 1; while (b) { if (b & 1) { res = (res * cur) % mod; } cur = (cur * cur) % mod; b >>= 1; } return res; } bool MillerRabin(long long n) { if (n <= 1) { return false; } if (n == 2 || n == 7 || n == 61) { return true; } if (n % 2 == 0) { return false; } vector<long long> A; if (n < 4759123141) { A = {2, 7, 61}; } else { A = {2, 325, 9375, 28178, 450775, 9780504, 1795265022}; } long long s = 0, d = n - 1; while (d % 2 == 0) { s++; d >>= 1; } for (auto a : A) { if (n <= a) { return true; } long long x = modpow<__int128_t>(a, d, n); if (x == 1) { continue; } bool ok = false; for (int i = 0; i < s; i++) { if (x == n - 1) { ok = true; break; } x = (__int128_t)x * x % n; } if (!ok) { return false; } } return true; } long long gcd(long long x, long long y) { if (y == 0) { return x; } return gcd(y, x % y); } unsigned int xorshift() { static unsigned int x = 123456789, y = 362436069, z = 521288629, w = 88675123; unsigned int t = (x ^ (x << 11)); x = y; y = z; z = w; return (w = (w ^ (w >> 19)) ^ (t ^ (t >> 8))); } long long Pollard(long long n) { if (n % 2 == 0) { return 2LL; } if (MillerRabin(n)) { return n; } long long i = 0; while (true) { long long r = xorshift(); auto f = [&](auto f, long long x) -> long long { return (__int128_t(x) * x + r) % n; }; i++; long long x = i, y = f(f, x); while (true) { long long p = gcd(y - x + n, n); if (p == 0 || p == n) { break; } if (p != 1) { return p; } x = f(f, x); y = f(f, f(f, y)); } } } vector<long long> prime_factorize(long long n) { if (n == 1) { return {}; } long long p = Pollard(n); if (p == n) { return {p}; } vector<long long> l = prime_factorize(p); vector<long long> r = prime_factorize(n / p); vector<long long> res; for (auto x : l) { res.emplace_back(x); } for (auto x : r) { res.emplace_back(x); } sort(res.begin(), res.end()); return res; } int main() { int q; cin >> q; while (q--) { long long a; cin >> a; vector<long long> p = prime_factorize(a); cout << (p.size() == 3 ? "Yes" : "No") << endl; } }