結果

問題 No.3030 ミラー・ラビン素数判定法のテスト
ユーザー koprickykopricky
提出日時 2020-08-16 04:24:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,235 bytes
コンパイル時間 1,761 ms
コンパイル使用メモリ 167,240 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-11 22:57:42
合計ジャッジ時間 2,429 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#define ll long long
#define INF 1000000005
#define MOD 1000000007
#define EPS 1e-10
#define rep(i,n) for(int i=0;i<(int)(n);++i)
#define rrep(i,n) for(int i=(int)(n)-1;i>=0;--i)
#define srep(i,s,t) for(int i=(int)(s);i<(int)(t);++i)
#define each(a,b) for(auto& (a): (b))
#define all(v) (v).begin(),(v).end()
#define len(v) (int)(v).size()
#define zip(v) sort(all(v)),v.erase(unique(all(v)),v.end())
#define cmx(x,y) x=max(x,y)
#define cmn(x,y) x=min(x,y)
#define fi first
#define se second
#define pb push_back
#define show(x) cout<<#x<<" = "<<(x)<<endl
#define spair(p) cout<<#p<<": "<<p.fi<<" "<<p.se<<endl
#define sar(a,n) cout<<#a<<":";rep(pachico,n)cout<<" "<<a[pachico];cout<<endl
#define svec(v) cout<<#v<<":";rep(pachico,v.size())cout<<" "<<v[pachico];cout<<endl
#define svecp(v) cout<<#v<<":";each(pachico,v)cout<<" {"<<pachico.first<<":"<<pachico.second<<"}";cout<<endl
#define sset(s) cout<<#s<<":";each(pachico,s)cout<<" "<<pachico;cout<<endl
#define smap(m) cout<<#m<<":";each(pachico,m)cout<<" {"<<pachico.first<<":"<<pachico.second<<"}";cout<<endl

using namespace std;

typedef pair<int,int> P;
typedef pair<ll,ll> pll;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef vector<ll> vl;
typedef vector<vl> vvl;
typedef vector<double> vd;
typedef vector<P> vp;
typedef vector<string> vs;

const int MAX_N = 100005;

unsigned long long mod_mul(unsigned long long a, unsigned long long b, unsigned long long mod){
    long long ret = a * b - mod * (unsigned long long)(1.L / mod * a * b);
    return ret + mod * (ret < 0) - mod * (ret >= (ll)mod);
}

// const vector<unsigned int> numset = {2,7,61}; // < 4,759,123,141 ≒ 4×10^9
// const vector<unsigned int> numset = {2,3,5,7,11,13,17}; // < 341,550,071,728,321 ≒ 3*10^14
const vector<unsigned long long> numset = {2, 325, 9375, 28178, 450775, 9780504, 1795265022}; // 2^64までいける
// long long mod_pow(long long x, long long k, long long mod){
//     long long res = 1;
//     while(k){
//         if(k & 1) res = res * x % mod;
//         x = x * x % mod;
//         k >>= 1;
//     }
//     return res;
// }
// long long型の素数判定の場合
unsigned long long mod_pow(unsigned long long x, unsigned long long k, unsigned long long mod){
    unsigned long long res = 1;
    while(k){
        if(k & 1) res = mod_mul(res, x, mod);
        x = mod_mul(x, x, mod);
        k >>= 1;
    }
    return res;
}
// check if n is prime
bool check(unsigned long long n){
    if(n < 2) return false;
    unsigned long long d = n - 1, s = 0;
    while(d % 2 == 0){
        d /= 2;
        s++;
    }
    for(unsigned long long a : numset){
        if(a % n == 0) return true;
        unsigned long long res = mod_pow(a, d, n);
        if(res == 1) continue;
        bool ok = true;
        for(unsigned int r = 0; r < s; r++){
            if(res == n-1){
                ok = false;
                break;
            }
            res = mod_mul(res, res, n);
        }
        if(ok) return false;
    }
    return true;
}

int main()
{
    cin.tie(0);
    ios::sync_with_stdio(false);
    int n;
    cin >> n;
    rep(i,n){
        long long x;
        cin >> x;
        cout << x << " " << check(x) << "\n";
    }
    return 0;
}
0