結果

問題 No.3030 ミラー・ラビン素数判定法のテスト
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-02-07 21:58:18
言語 Ruby
(3.3.0)
結果
AC  
実行時間 5,258 ms / 9,973 ms
コード長 97 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 19,200 KB
最終ジャッジ日時 2024-11-16 23:12:18
合計ジャッジ時間 13,581 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
18,432 KB
testcase_01 AC 127 ms
18,560 KB
testcase_02 AC 129 ms
18,944 KB
testcase_03 AC 130 ms
18,688 KB
testcase_04 AC 2,612 ms
19,072 KB
testcase_05 AC 2,403 ms
18,944 KB
testcase_06 AC 334 ms
18,944 KB
testcase_07 AC 333 ms
18,944 KB
testcase_08 AC 328 ms
19,200 KB
testcase_09 AC 5,258 ms
19,200 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'openssl';gets;STDIN.each{|x| x.strip!; puts "#{x} #{OpenSSL::BN.new(x).prime? ? 1 : 0}"}
0