結果
問題 | No.2887 Minahoshi (Easy) |
ユーザー | Lisp_Coder |
提出日時 | 2024-09-17 15:16:43 |
言語 | Common Lisp (sbcl 2.5.0) |
結果 |
AC
|
実行時間 | 11 ms / 2,000 ms |
コード長 | 125 bytes |
コンパイル時間 | 1,228 ms |
コンパイル使用メモリ | 37,168 KB |
実行使用メモリ | 32,544 KB |
最終ジャッジ日時 | 2024-09-17 15:16:46 |
合計ジャッジ時間 | 3,014 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 27 |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 17 SEP 2024 03:16:43 PM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.084
ソースコード
(defun main () (let ((n (parse-integer (read-line)))) (format t "~A~%" (make-string n :initial-element #\a)))) (main)