結果
| 問題 | No.135 とりあえず1次元の問題 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-04-16 22:51:00 |
| 言語 | Common Lisp (sbcl 2.6.3) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 436 bytes |
| 記録 | |
| コンパイル時間 | 879 ms |
| コンパイル使用メモリ | 35,576 KB |
| 実行使用メモリ | 39,612 KB |
| 最終ジャッジ日時 | 2026-07-09 16:46:42 |
| 合計ジャッジ時間 | 2,980 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 16 WA * 6 |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 09 JUL 2026 04:46:39 PM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.024
ソースコード
(read-line)
(defparameter x (read-from-string (concatenate 'string "(" (read-line) ")" )))
(defparameter mae 0)
(defparameter ans 0)
(sort 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)