結果

問題 No.3030 ミラー・ラビン素数判定法のテスト
ユーザー surumeika1987surumeika1987
提出日時 2020-11-19 18:12:43
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 3,448 ms / 9,973 ms
コード長 1,301 bytes
コンパイル時間 13,263 ms
コンパイル使用メモリ 436,924 KB
実行使用メモリ 99,924 KB
最終ジャッジ日時 2024-11-16 23:34:58
合計ジャッジ時間 28,484 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 271 ms
50,288 KB
testcase_01 AC 277 ms
50,152 KB
testcase_02 AC 332 ms
50,260 KB
testcase_03 AC 339 ms
50,496 KB
testcase_04 AC 2,336 ms
98,808 KB
testcase_05 AC 2,682 ms
96,460 KB
testcase_06 AC 1,378 ms
93,612 KB
testcase_07 AC 1,538 ms
92,984 KB
testcase_08 AC 1,613 ms
94,368 KB
testcase_09 AC 3,448 ms
99,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger
import java.lang.Math

fun main() {
    val n_num = readLine()!!.toInt()
    repeat(n_num) {
        val bg = readLine()!!.toBigInteger()
        var cnt = 0
        var isp: Boolean

        do {
            isp = IsPrime.Miller_Rabin.isPrime(bg)
            cnt++
        } while (isp && cnt < 10)
        
        println(if (isp) "${bg} 1" else "${bg} 0")
    }
}

class IsPrime {
    companion object Miller_Rabin {
        fun isPrime(num: BigInteger) : Boolean{
            if (1.toBigInteger() == num) return false
            if (2.toBigInteger() == num) return true
            if (num.mod(2.toBigInteger()) == BigInteger.ZERO) return false
            var s = 0
            var t = num - 1.toBigInteger()
            while (t.and(1.toBigInteger()) == BigInteger.ZERO) {
                s = s + 1
                t = t.shr(1)
            }
            val a = num.minus(1.toBigInteger()).toBigDecimal().times(Math.random().toBigDecimal()).toBigInteger().plus(1.toBigInteger())
            // println("a = ${a}")
            if (a.modPow(t, num) == 1.toBigInteger()) return true
            for (i in 0..s-1)
                if (a.modPow(2.toBigInteger().pow(i).times(t), num) == num.minus(1.toBigInteger())) return true

            return false
        }
    }
}
0