結果

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

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

ソースコード

diff #

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

;(print x)
(defparameter mae 0)
(defparameter ans 0)
(setf x (sort x #'<))
;(print x)
;(print (car x))

(if (= (length x) 1) (progn (format t "~d~%" ans) (quit)))
(setq mae (car x))
(setq x (cdr 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