結果

問題 No.3030 ミラー・ラビン素数判定法のテスト
ユーザー firiexpfiriexp
提出日時 2018-09-13 19:26:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,437 bytes
コンパイル時間 725 ms
コンパイル使用メモリ 82,868 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-24 09:07:18
合計ジャッジ時間 14,345 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <limits>
#include <iostream>
#include <algorithm>
#include <vector>
#include <iomanip>
#include <map>
#include <queue>

static const int MOD = 1000000007;
using ll = long long;
using u32 = unsigned;
using namespace std;

template<class T>
constexpr T INF = ::numeric_limits<T>::max() / 2;


template<class T>
T mul_ (T x, T y, T M){
    T res = 0;
    for (;y;y/=2) {
        if (y & 1) res = (res + x) % M;
        x = (x + x) % M;
    }
    return res;
}

template<class T>
T pow_ (T x, T n, T M){
    if (n == 0) return 1;
    T res = pow_(x, n/2, M);
    return mul_(mul_(res, res, M),(n & 1 ? x : 1), M);
};

bool suspect(uint64_t a, uint64_t s, uint64_t d, uint64_t n){
    uint64_t x = pow_(a, d, n);
    if (x == 1) return true;
    for (int r = 0; r < s; ++r) {
        if(x == n-1) return true;
        x = mul_(x, x, n);
    }
    return false;
}

template<class T>
bool miller_rabin(T m){
    uint64_t n = m;
    if (n <= 1 || (n > 2 && n % 2 == 0)) return false;
    uint64_t d = n - 1, s = 0;
    while (!(d&1)) {++s; d >>= 1;}
    static const uint64_t v[] = {2, 325, 9375, 28178, 450775, 9780504, 1795265022};
    for (auto &&p : v) {
        if(p >= n) break;
        if(!suspect(p, s, d, n)) return false;
    }
    return true;
}

int main() {
    ll n;
    cin >> n;
    for (int i = 0; i < n; ++i) {
        ll k;
        cin >> k;
        cout << k << " " << miller_rabin(k) << "\n";
    }
    return 0;
}
0