結果
問題 | No.3030 ミラー・ラビン素数判定法のテスト |
ユーザー | akakimidori |
提出日時 | 2019-04-24 02:48:20 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 3,777 ms / 9,973 ms |
コード長 | 1,261 bytes |
コンパイル時間 | 276 ms |
コンパイル使用メモリ | 30,848 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-16 23:14:44 |
合計ジャッジ時間 | 9,336 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 1,954 ms
5,248 KB |
testcase_05 | AC | 1,814 ms
5,248 KB |
testcase_06 | AC | 309 ms
5,248 KB |
testcase_07 | AC | 322 ms
5,248 KB |
testcase_08 | AC | 324 ms
5,248 KB |
testcase_09 | AC | 3,777 ms
5,248 KB |
ソースコード
#include<stdio.h> #include<stdlib.h> #include<stdint.h> #include<inttypes.h> typedef uint32_t u32; typedef uint64_t u64; u64 mul (u64 a, u64 b, u64 mod) { u64 ans = 0; while (b > 0) { if (b & 1) { ans += a; if (ans >= mod) ans -= mod; } a += a; if (a >= mod) a -= mod; b >>= 1; } return ans; } u64 mod_pow (u64 a, u64 n, u64 mod) { u64 t = 1; while (n > 0) { if (n & 1) t = mul (t, a, mod); a = mul (a, a, mod); n >>= 1; } return t; } u64 xor_shift (void) { static u64 x = (u64)88172645463325252; x ^= x << 7; return x ^= x >> 9; } u32 is_prime_miller (const u64 p, u32 iter) { if (p <= 1) return 0; if (p <= 3) return 1; if (p % 2 == 0) return 0; u64 d = p - 1; u32 s = 0; while (d % 2 == 0) { d /= 2; s++; } while (iter--) { u64 a = xor_shift() % (p - 1) + 1; a = mod_pow (a, d, p); if (a == 1) continue; u32 i = 0; for (; i < s && a != p - 1; ++i, a = mul (a, a, p)); if (i >= s) return 0; } return 1; } void run (void) { u32 n; scanf ("%" SCNu32, &n); while (n--) { u64 x; scanf ("%" SCNu64, &x); printf ("%" PRIu64 " %" PRIu32 "\n", x, is_prime_miller (x, 15)); } } int main (void) { run(); return 0; }