結果
問題 | No.3030 ミラー・ラビン素数判定法のテスト |
ユーザー | はむ吉🐹 |
提出日時 | 2017-11-19 19:30:13 |
言語 | Scheme (Gauche-0.9.14) |
結果 |
AC
|
実行時間 | 3,393 ms / 9,973 ms |
コード長 | 312 bytes |
コンパイル時間 | 89 ms |
コンパイル使用メモリ | 5,248 KB |
実行使用メモリ | 38,656 KB |
最終ジャッジ日時 | 2024-11-16 23:06:15 |
合計ジャッジ時間 | 17,456 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 122 ms
29,568 KB |
testcase_01 | AC | 120 ms
29,184 KB |
testcase_02 | AC | 124 ms
29,312 KB |
testcase_03 | AC | 123 ms
29,440 KB |
testcase_04 | AC | 2,140 ms
38,656 KB |
testcase_05 | AC | 2,497 ms
38,400 KB |
testcase_06 | AC | 2,185 ms
38,656 KB |
testcase_07 | AC | 2,205 ms
38,400 KB |
testcase_08 | AC | 2,222 ms
38,656 KB |
testcase_09 | AC | 3,393 ms
38,656 KB |
ソースコード
(use math.prime) (use srfi-42) (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 (list-ec (:range v n) (read)))) (for-each print (map report xs) ))) (main-proc)