結果

問題 No.3030 ミラー・ラビン素数判定法のテスト
ユーザー はむ吉🐹はむ吉🐹
提出日時 2017-11-22 22:06:26
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 3,367 ms / 9,973 ms
コード長 317 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 33,280 KB
最終ジャッジ日時 2024-11-16 23:06:39
合計ジャッジ時間 17,173 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
27,264 KB
testcase_01 AC 100 ms
27,136 KB
testcase_02 AC 103 ms
27,520 KB
testcase_03 AC 101 ms
27,520 KB
testcase_04 AC 2,071 ms
33,280 KB
testcase_05 AC 2,521 ms
33,280 KB
testcase_06 AC 2,178 ms
33,024 KB
testcase_07 AC 2,196 ms
33,152 KB
testcase_08 AC 2,173 ms
33,024 KB
testcase_09 AC 3,367 ms
33,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(use gauche.generator)
(use math.prime)

(define (b2i b) (if b 1 0))

(define (is-prime? n) (if (> n 1) (bpsw-prime? n) #f))

(define (report n) (format "~d ~d" n (b2i (is-prime? n))))

(define (main-proc)
    (let* ((n (read)) (xs (gtake read n)))
        (generator-for-each print (gmap report xs) )))

(main-proc)
0