結果
問題 | No.3030 ミラー・ラビン素数判定法のテスト |
ユーザー | keiden |
提出日時 | 2024-09-13 19:06:51 |
言語 | Scheme (Gauche-0.9.14) |
結果 |
RE
|
実行時間 | - |
コード長 | 352 bytes |
コンパイル時間 | 174 ms |
コンパイル使用メモリ | 6,684 KB |
実行使用メモリ | 35,744 KB |
最終ジャッジ日時 | 2024-09-13 19:06:56 |
合計ジャッジ時間 | 2,763 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
ソースコード
(use scheme.base) (use scheme.read) (use scheme.write) (use math.prime) (define yuki3030 (let* ( (n (read)) ) (do ( (x (read) (read)) (i 1 (+ i 1)) ) ((> i n) ) (write x) (display " ") (write (if (= x 1) 0 ((if (miller-rabin-prime? x 12) 1 0)))) (display "\n") ) ) )