結果
問題 | No.3030 ミラー・ラビン素数判定法のテスト |
ユーザー | keiden |
提出日時 | 2024-09-13 19:03:47 |
言語 | Scheme (Gauche-0.9.14) |
結果 |
RE
|
実行時間 | - |
コード長 | 332 bytes |
コンパイル時間 | 396 ms |
コンパイル使用メモリ | 5,376 KB |
実行使用メモリ | 41,088 KB |
最終ジャッジ日時 | 2024-09-13 19:04:02 |
合計ジャッジ時間 | 13,629 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 137 ms
34,560 KB |
testcase_01 | AC | 141 ms
34,560 KB |
testcase_02 | AC | 139 ms
34,688 KB |
testcase_03 | AC | 139 ms
34,560 KB |
testcase_04 | RE | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 4,440 ms
40,672 KB |
ソースコード
(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 (miller-rabin-prime? x) 1 0)) (display "\n") ) ) )