結果
| 問題 | No.744 循環小数N桁目 Easy |
| コンテスト | |
| ユーザー |
betit0919
|
| 提出日時 | 2020-06-22 00:18:43 |
| 言語 | Common Lisp (sbcl 2.6.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 134 bytes |
| 記録 | |
| コンパイル時間 | 1,529 ms |
| コンパイル使用メモリ | 26,880 KB |
| 実行使用メモリ | 20,608 KB |
| 最終ジャッジ日時 | 2026-03-25 02:16:30 |
| 合計ジャッジ時間 | 2,492 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 7 |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 25 MAR 2026 02:16:28 AM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.065
ソースコード
(defun solve (n)
(case (rem n 6)
(0 2)
(1 8)
(2 5)
(3 7)
(4 1)
(5 4)
)
)
(format t "~A~%" (solve (read)))
betit0919