結果
問題 | No.3030 ミラー・ラビン素数判定法のテスト |
ユーザー | lorent_kyopro |
提出日時 | 2020-12-24 00:36:24 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,038 bytes |
コンパイル時間 | 1,901 ms |
コンパイル使用メモリ | 200,564 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-18 19:00:58 |
合計ジャッジ時間 | 2,994 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; long long pow_mod(long long x, long long n, long long m) { assert(0 <= n && 1 <= m); if (m == 1) return 0; __int128 r = 1, y = (x % m + m) % m; while (n > 0) { if (n & 1) r = r * y % m; y = y * y % m; n >>= 1; } return r; } bool is_prime(long long n) { if (n <= 1) return false; constexpr long long bases[12] = {2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37}; for (long long a : bases) if (n == a) return true; if (n % 2 == 0) return false; long long d = n - 1; int t = __builtin_ctzll(d); d >>= __builtin_ctzll(d); for (long long a : bases) { if (a >= n) break; int i = t; __int128 y = pow_mod(a, d, n); while (i-- && y != 1 && y != n - 1) y = y * y % n; if (y != n - 1 && i != t) return false; } return true; } int main() { int n; cin >> n; while (n--) { long long x; cin >> x; cout << x << ' ' << is_prime(x) << '\n'; } }