結果

問題 No.3030 ミラー・ラビン素数判定法のテスト
ユーザー lorent_kyoprolorent_kyopro
提出日時 2020-12-24 01:04:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,123 bytes
コンパイル時間 1,757 ms
コンパイル使用メモリ 201,068 KB
実行使用メモリ 6,940 KB
最終ジャッジ日時 2024-04-29 14:42:40
合計ジャッジ時間 3,017 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#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 witness(int a, long long n) {
    long long u = n - 1;
    int t = __builtin_ctzll(u);
    u >>= t;
    __int128 x = pow_mod(a, u, n);
    for (int i = 0; i < t; ++i) {
        __int128 y = x * x % n;
        if (y == 1 && x != 1 && x != n - 1) return true;
        x = y;
    }
    if (x != 1) return true;
    return false;
}

bool is_prime(long long n) {
    if (n <= 1) return false;
    constexpr long long bases[7] = {2, 325, 9375, 28178, 450775, 9780504, 1795265022};
    for (long long a : bases) if (n == a) return true;
    if (n % 2 == 0) return false;
    for (long long a : bases) if (witness(a, n)) return false;
    return true;
}

int main() {
    int n;
    cin >> n;
    while (n--) {
        long long x;
        cin >> x;
        cout << x << ' ' << is_prime(x) << '\n';
    }
}
0