結果
問題 | No.3030 ミラー・ラビン素数判定法のテスト |
ユーザー | Rho |
提出日時 | 2019-10-19 02:50:42 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 9,461 ms / 9,973 ms |
コード長 | 1,145 bytes |
コンパイル時間 | 1,722 ms |
コンパイル使用メモリ | 169,680 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-18 17:34:38 |
合計ジャッジ時間 | 31,477 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 3 ms
6,816 KB |
testcase_04 | AC | 5,325 ms
6,816 KB |
testcase_05 | AC | 5,492 ms
6,816 KB |
testcase_06 | AC | 2,951 ms
6,820 KB |
testcase_07 | AC | 2,939 ms
6,820 KB |
testcase_08 | AC | 2,936 ms
6,816 KB |
testcase_09 | AC | 9,461 ms
6,820 KB |
ソースコード
#include "bits/stdc++.h" using namespace std; #define int unsigned long long random_device rd; mt19937_64 mt(rd()); int modpro(int x, int n, int md) {//log^2 n int res = 0; for (; n; n >>= 1) { if (n & 1)res =(res+x)%md; x = (x + x) % md; } return res; } int modpow(int x, int n, int md) {//log n int res = 1; for (; n; n >>= 1) { if (n & 1)res = modpro(res, x, md); x = modpro(x, x, md); } return res; } int gcd(int a, int b) { if (!b)return a; return gcd(b, a%b); } bool isprime(int n) { if (n < 2)return false; int m = n - 1; int e = 0; while (!(m & 1)) { m /= 2; e++; } for(int z=0;z<6;z++) { int b = mt() % (n-1)+1; if (gcd(b, n) != 1)return false; bool ok = false; if (modpow(b, m, n) != 1) { for (int k = 0; k < e; k++) { if (modpow(b, m*(1ll << k), n) == n - 1) { ok = true; break; } } } else ok = true; if (!ok) { return false; } } return true; } signed main() { ios::sync_with_stdio(false); cin.tie(nullptr); signed n; cin >> n; int p; for (int i = 0; i < n; i++) { cin >> p; cout << p; if (isprime(p))cout << " 1" << endl; else cout << " 0" << endl; } }