結果
問題 | No.3030 ミラー・ラビン素数判定法のテスト |
ユーザー | iwkjosec |
提出日時 | 2022-06-23 14:58:41 |
言語 | C# (.NET 8.0.203) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,048 bytes |
コンパイル時間 | 8,896 ms |
コンパイル使用メモリ | 162,908 KB |
実行使用メモリ | 180,084 KB |
最終ジャッジ日時 | 2024-11-07 06:13:26 |
合計ジャッジ時間 | 11,414 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
23,040 KB |
testcase_01 | AC | 42 ms
23,020 KB |
testcase_02 | AC | 41 ms
23,040 KB |
testcase_03 | AC | 42 ms
22,900 KB |
testcase_04 | WA | - |
testcase_05 | AC | 318 ms
25,984 KB |
testcase_06 | AC | 153 ms
26,112 KB |
testcase_07 | AC | 154 ms
25,984 KB |
testcase_08 | AC | 153 ms
26,240 KB |
testcase_09 | AC | 543 ms
180,084 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (106 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
using System; using static System.Console; class Program { static void Main() { SetOut(new System.IO.StreamWriter(OpenStandardOutput()) { AutoFlush = false }); var n = FastIO.Long(); for (int i = 0; i < n; i++) { var x = (ulong)FastIO.Long(); WriteLine(x.ToString() + " " + (MillerRabin(x) ? "1" : "0")); } Out.Flush(); } public static uint[] b64 = new uint[] { 2, 325, 9375, 28178, 450775, 9780504, 1795265022 }; public static bool MillerRabin(ulong n) { if (n == 2 || n == 3 || n == 5 || n == 7) return true; if ((n & 1) == 0 || n % 3 == 0 || n % 5 == 0 || n % 7 == 0) return false; if (n < 121) return n > 1; var d = n - 1; var s = System.Numerics.BitOperations.TrailingZeroCount(d); d >>= s; foreach (var a in b64) { //if (a >= n) continue; // あぁ・・・ var x = ModPow(a, d, n); if (x == 1) continue; for (int r = 0; r < s; r++) { if (x == n - 1) goto b; x = ModMul(x, x, n); } return false; b:; } return true; } static ulong BigMul(ulong a, ulong b, out ulong low) { uint al = (uint)a; uint ah = (uint)(a >> 32); uint bl = (uint)b; uint bh = (uint)(b >> 32); ulong mull = ((ulong)al) * bl; ulong t = ((ulong)ah) * bl + (mull >> 32); ulong tl = ((ulong)al) * bh + (uint)t; low = tl << 32 | (uint)mull; return ((ulong)ah) * bh + (t >> 32) + (tl >> 32); } static ulong ModPow(ulong x, ulong n, ulong m) { var res = 1ul; while (n != 0) { if ((n & 1) == 1) res = ModMul(res, x, m); x = ModMul(x, x, m); n >>= 1; } return res; } static ulong ModMul(ulong l, ulong r, ulong mod) { unchecked { if (mod <= uint.MaxValue) return l % mod * (r % mod) % mod; var high = BigMul(l, r, out var low) % mod; if (high == 0ul) return low % mod; var lzc = 0; if (0 <= (long)mod) { lzc = System.Numerics.BitOperations.LeadingZeroCount(mod); mod <<= lzc; high = (high << lzc) | (low >> (64 - lzc)); low <<= lzc; } var mh = mod >> 32; var ml = (ulong)(uint)mod; var q = high / mh; var p = q * ml; high -= q * mh; high = (high << 32) | (low >> 32); if (high < p) { high += mod; if (high >= mod && high < p) { high += mod; } } high -= p; q = high / mh; p = q * ml; high -= q * mh; high = (high << 32) | (uint)low; if (high < p) { high += mod; if (high >= mod && high < p) { high += mod; } } return (high - p) >> lzc; } } } public static class FastIO { static System.IO.Stream str = System.Console.OpenStandardInput(); const int size = 1024; static byte[] buffer = new byte[size]; static int ptr = size; static byte Read() { if (ptr == size) { str.Read(buffer, 0, size); ptr = 0; } return buffer[ptr++]; } public static long Long() { var c = Read(); while (c < 0x21) { c = Read(); } var n = false; if (c == '-') { n = true; c = Read(); } var ret = 0L; while (c > 0x20) { ret = ret * 10 + c - '0'; c = Read(); } return n ? -ret : ret; } }