結果
問題 | No.3030 ミラー・ラビン素数判定法のテスト |
ユーザー | yuruhiya |
提出日時 | 2020-07-28 21:59:23 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 852 bytes |
コンパイル時間 | 1,929 ms |
コンパイル使用メモリ | 200,252 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-18 18:07:13 |
合計ジャッジ時間 | 2,479 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
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; template <class T> inline T Powmod(T a, T n, T m) { T r = 1; while (n > 0) { if (n & 1) r = r * a % m, n--; else a = a * a % m, n /= 2; } return r; } bool MillerRabin(const long long n) { assert(n > 0); if (n == 2) { return true; } else if (n == 1 || n % 2 == 0) { return false; } long long d = n - 1; while (d % 2 == 0) { d /= 2; } for (long long a : {2, 325, 9375, 28178, 450775, 9780504, 1795265022}) { long long t = d, y = Powmod(a, t, n); while (t != n - 1 && y != 1 && y != n - 1) { y = (y * y) % n; t /= 1; } if (y != n - 1 && t % 2 == 0) { return false; } } return true; } int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin >> n; while (n--) { long long x; cin >> x; cout << x << ' ' << MillerRabin(x) << '\n'; } }