1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
   | #include<iostream> #include<algorithm> #include<cstring> #include<cstdlib> #include<cmath> #include<ctime> using namespace std; typedef long long ll; const int N = 1e5 + 7; const int times = 10; ll fast_mod(ll a,ll b,ll mod) {     ll res = 0;     while(b){         if(b & 1) res = res + a;         a <<= 1;         if(a >= mod) a -= mod;         if(res >= mod) res -= mod;         b >>= 1;     }     return res; } ll fast_pow_mod(ll a,ll b,ll mod) {     ll res = 1;     while(b){         if(b & 1) res = (res * a) % mod;         a = (a * a) % mod;         b >>= 1;     }     return res; } bool check(ll a,ll m,ll p,ll n) {     ll temp = fast_pow_mod(a,m,n),ret = temp;     for(int i = 0;i < p;++i){         ret = fast_mod(temp,temp,n);         if(ret == 1 && temp != n - 1 && temp != 1) return true;         temp = ret;     }     return ret != 1; } bool Miller_Pabin(ll n) {     if(n < 2) return false;     if(n == 2) return true;     if(n & 1 == 0) return false;     ll p = 0,x = n - 1;     while(x & 1 == 0){         x >>= 1;         p++;     }     srand(time(NULL));     for(int i = 0;i < times;++i){         ll o = rand() % (n - 1) + 1;         if(check(o,x,p,n)) return false;     }     return true; }
  int main() {     ios::sync_with_stdio(false);     int t;     cin >> t;     while(t--){         long long n;         cin >> n;         cout << (Miller_Pabin(n) ? "Prime" : "Not a Prime") << endl;     }     return 0; }
 
 
  |