結果
問題 | No.3030 ミラー・ラビン素数判定法のテスト |
ユーザー | iwkjosec |
提出日時 | 2020-09-14 03:15:23 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,293 bytes |
コンパイル時間 | 2,689 ms |
コンパイル使用メモリ | 111,668 KB |
実行使用メモリ | 30,096 KB |
最終ジャッジ日時 | 2024-11-18 18:24:24 |
合計ジャッジ時間 | 8,099 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 27 ms
25,900 KB |
testcase_02 | AC | 28 ms
23,992 KB |
testcase_03 | AC | 31 ms
22,072 KB |
testcase_04 | AC | 896 ms
30,096 KB |
testcase_05 | AC | 871 ms
29,980 KB |
testcase_06 | AC | 388 ms
29,988 KB |
testcase_07 | AC | 373 ms
28,316 KB |
testcase_08 | AC | 378 ms
27,936 KB |
testcase_09 | AC | 1,606 ms
27,940 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; using System.Numerics; using System.Runtime.CompilerServices; using static System.Console; using static System.Math; class Program { static void Main() { var n = long.Parse(ReadLine()); for (int i = 0; i < n; i++) { var x = long.Parse(ReadLine()); WriteLine(x.ToString() + " " + (MillerRabin(x) ? "1" : "0")); } } static uint[] l = new uint[] { 2, 325, 9375, 28178, 450775, 9780504, 1795265022 }; static bool MillerRabin(long n) { if (n < 2) return false; if (n % 2 == 0) return n == 2; var d = n - 1; var s = 0; while (d % 2 == 0) { s++; d >>= 1; } var dd = (BigInteger)d; var nn = (BigInteger)n; for (int i = 0; i < l.Length && l[i] < n; i++) { var a = l[i]; var c = true; var x = BigInteger.ModPow(a, dd, nn); if (x == 1) c = false; for (int r = 0; r < s; r++) { if (x == nn - 1) c = false; if (!c) break; x = x * x % nn; } if (c) return false; } return true; } }