結果

問題 No.3030 ミラー・ラビン素数判定法のテスト
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-12-04 11:47:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 291 ms / 9,973 ms
コード長 1,337 bytes
コンパイル時間 2,385 ms
コンパイル使用メモリ 203,372 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-04 11:47:31
合計ジャッジ時間 4,478 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 153 ms
5,248 KB
testcase_05 AC 148 ms
5,248 KB
testcase_06 AC 69 ms
5,248 KB
testcase_07 AC 68 ms
5,248 KB
testcase_08 AC 68 ms
5,248 KB
testcase_09 AC 291 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include <atcoder/modint>

using namespace std;
//using namespace atcoder;
using ll = long long;
//using mint = modint998244353;

using cll = __int128_t;
cll mod_exp(cll b, cll e, cll m){
    if (e > 0 && b == 0) return 0;
    cll ans = 1 % m;
    b %= m;

    while (e > 0){
        if (e & 1) ans = (ans * b) % m;
        e >>= 1;
        b = (b*b) % m;
    }

    return ans;
}

bool _miller_rabin(ll N, vector<ll> A){
    ll s = 0, t = N-1;
    while(!(t & 1)){
        s++;
        t >>= 1;
    }
    for (auto a : A){
        if (N <= a) return 1;
        ll x = mod_exp(a, t, N);
        if (x == 1) continue;
        bool f=0;
        for (int r=0; r<s; r++){
            if (x == N-1){
                f = 1;
                break;
            }
            x = (cll)x * x % N;
        }
        if (!f) return 0;
    }
    return 1;
}

bool miller_rabin(ll N){
    if (N == 2) return 1;
    if (N <= 1) return 0;
    if (N % 2 == 0) return 0;
    if (N < 4759123141LL) return _miller_rabin(N, {2, 7, 61});
    return _miller_rabin(N, {2, 325, 9375, 28178, 450775, 9780504, 1795265022});
}


int main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);
    ll N, x;
    cin >> N;
    while(N--){
        cin >> x;
        cout << x << " " << miller_rabin(x) << endl;
    }

    return 0;
}
0