結果
| 問題 | No.964 2020 |
| コンテスト | |
| ユーザー |
Common Lisp
|
| 提出日時 | 2024-11-08 15:25:35 |
| 言語 | Common Lisp (sbcl 2.6.3) |
| 結果 |
AC
|
| 実行時間 | 9 ms / 2,020 ms |
| コード長 | 179 bytes |
| 記録 | |
| コンパイル時間 | 483 ms |
| コンパイル使用メモリ | 29,184 KB |
| 実行使用メモリ | 22,016 KB |
| 最終ジャッジ日時 | 2026-05-08 18:21:12 |
| 合計ジャッジ時間 | 1,770 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 8 |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 08 MAY 2026 06:21:09 PM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.071
ソースコード
(defun main (&rest argv)
(declare (ignorable argv))
(let* ((n (read)))
(dotimes (i n)
(dotimes (j n)
(format t "~d" (mod (1+ i) 10))))
(terpri)))
(main)
Common Lisp