// yukicoder 3030 ミラー・ラビン素数判定法のテスト // 2019.5.18 bal4u #include #include typedef long long ll; typedef unsigned long long ull; //// 高速入出力 #if 1 #define gc() getchar_unlocked() #define pc(c) putchar_unlocked(c) #else #define gc() getchar() #define pc(c) putchar(c) #endif ull in(int ec) { // 非負整数の入力 ull n = 0; int c; while (1) { if ((c = gc()) < '0') break; if (ec) pc(c); n = 10 * n + (c & 0xf); } return n; } //// ラビン素数テスト #if 1 #define mulmod128(a,b,n) ((__int128_t)a*b % n) #else #define mod(a,m) ((a)%(m)) ull mulmod128(ull a, ull b, ull m) { ull ans = 0; a = mod(a, m), b = mod(b, m); while (b > 0) { if (b & 1) ans = mod(ans + a, m); a = mod(a << 1, m); b >>= 1; } return ans; } #endif ull modpow(ull x, ull p, ull n) { ull r = 1; while (p > 0) { if (p & 1) r = mulmod128(r, x, n); x = mulmod128(x, x, n); p >>= 1; } return r; } int ptbl[7] = { 2,325,9375,28178,450775,9780504,1795265022 }; int suspect(ull n) { int i, j, b; ull t, u, x; u = n-1, t = 0; while ((u & 1) == 0) u >>= 1, t++; for (j = 0; j < 7; j++) { if ((b = ptbl[j]) >= n) { b %= n; if (b == 0) continue; } x = modpow(b, u, n); if (x == 1 || x == n-1) continue; i = 1; while (1) { if (i++ == t) return 0; x = mulmod128(x, x, n); if (x == 1) return 0; if (x == n-1) break; } } return 1; } int miller_rabin(ull n) { int p[16] = { 0,0,1,1,0,1,0,1,0,0,0,1,0,1,0,0 }; if (!(n >> 4)) return p[n]; if (!(n & 1)) return 0; if (!(n % 5)) return 0; return suspect(n); } int main() { int n = (int)in(0); while (n--) { ull x = in(1); pc(' '), pc('0' + miller_rabin(x)), pc('\n'); } return 0; }