結果

問題 No.185 和風
ユーザー Common LispCommon Lisp
提出日時 2024-10-08 13:42:30
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 10 ms / 1,000 ms
コード長 700 bytes
コンパイル時間 615 ms
コンパイル使用メモリ 39,276 KB
実行使用メモリ 21,760 KB
最終ジャッジ日時 2024-10-08 13:42:31
合計ジャッジ時間 1,293 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
21,760 KB
testcase_01 AC 10 ms
21,760 KB
testcase_02 AC 10 ms
21,760 KB
testcase_03 AC 8 ms
21,632 KB
testcase_04 AC 9 ms
21,760 KB
testcase_05 AC 8 ms
21,760 KB
testcase_06 AC 9 ms
21,760 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 08 OCT 2024 01:42:29 PM):

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

ソースコード

diff #

; 全ての yi - xi を求める
; その値が正の整数かつ全て同じ値ならばそれを出力
; そうでなければ -1 を出力する
(defun main ()
  (let* ((n (read))
             ; remove-duplicates sequence &key from-end test test-not start end key => result-sequence
             ; sequence の中の重複する要素を除いたシーケンスをコピーして返す
         (xs (remove-duplicates
                 (loop repeat n
                       for x = (read)
                       for y = (read)
                       collect (- y x))))
         (xslen (length xs))
         (ans (car xs)))
    (princ (if (and (= xslen 1) (plusp ans)) ans -1))
    (terpri)))
(main)
0