結果

問題 No.135 とりあえず1次元の問題
ユーザー まんしmaNNshi
提出日時 2025-04-14 22:46:52
言語 Common Lisp
(sbcl 2.5.0)
結果
WA  
実行時間 -
コード長 340 bytes
コンパイル時間 760 ms
コンパイル使用メモリ 30,836 KB
実行使用メモリ 40,432 KB
最終ジャッジ日時 2025-04-14 22:46:56
合計ジャッジ時間 2,766 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 17 WA * 5
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 14 APR 2025 10:46:53 PM):

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

ソースコード

diff #

(read-line)
(defparameter x (read-from-string (concatenate 'string "(" (read-line) ")" )))

(defparameter mae 0)
(defparameter ans 0)
(sort x #'<)
(loop for i in x do
	;(format t "mae=~d ans=~d i=~d~%" mae ans i)

 	(setq ans (if (= (- i mae) 0) ans
			  (if (= ans 0) (- i mae ) (min ans (- i mae)))))
	(setq mae i)
)
(format t "~d~%" ans)
0