結果

問題 No.3030 ミラー・ラビン素数判定法のテスト
ユーザー keidenkeiden
提出日時 2024-09-13 19:01:54
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 3,726 ms / 9,973 ms
コード長 325 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 7,068 KB
実行使用メモリ 41,040 KB
最終ジャッジ日時 2024-09-13 19:02:13
合計ジャッジ時間 18,776 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
34,688 KB
testcase_01 AC 138 ms
35,200 KB
testcase_02 AC 142 ms
35,128 KB
testcase_03 AC 141 ms
34,852 KB
testcase_04 AC 2,327 ms
40,920 KB
testcase_05 AC 2,724 ms
40,984 KB
testcase_06 AC 2,410 ms
41,040 KB
testcase_07 AC 2,441 ms
40,996 KB
testcase_08 AC 2,452 ms
40,864 KB
testcase_09 AC 3,726 ms
41,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(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 (bpsw-prime? x) 1 0))
      (display "\n")
    )
  )
)
0