結果

問題 No.1264 010
ユーザー linuxmetel
提出日時 2020-12-20 18:41:13
言語 Common Lisp
(sbcl 2.5.0)
結果
RE  
実行時間 -
コード長 63 bytes
コンパイル時間 1,977 ms
コンパイル使用メモリ 29,220 KB
実行使用メモリ 33,472 KB
最終ジャッジ日時 2024-09-21 12:02:50
合計ジャッジ時間 2,669 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 9
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 21 SEP 2024 12:02:45 PM):

; file: /home/judge/data/code/Main.lisp
; in: LOOP REPEAT
;     (LOOP REPEAT (READ) (PRINC "0"))
; 
; caught ERROR:
;   (during macroexpansion of (LOOP REPEAT ...))
;   (PRINC "0") found where LOOP keyword expected
;   current LOOP context: REPEAT (READ) (PRINC "0").

; in: FRESH-LINE
;     (FRESH-LINE)
; 
; note: deleting unreachable code
; 
; compilation unit finished
;   caught 1 ERROR condition
;   printed 1 note


; wrote /home/judge/data/code/Main.fasl
; compilation finished in 0:00:00.016

ソースコード

diff #

(princ "010")
(loop repeat (read)
    (princ "0"))
(fresh-line)
0