結果

問題 No.1264 010
ユーザー linuxmetellinuxmetel
提出日時 2020-12-20 18:41:13
言語 Common Lisp
(sbcl 2.3.8)
結果
RE  
実行時間 -
コード長 63 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 33,128 KB
実行使用メモリ 33,024 KB
最終ジャッジ日時 2023-10-21 10:53:44
合計ジャッジ時間 2,573 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 21 OCT 2023 01:53:41 AM):

; 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.011

ソースコード

diff #

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