結果

問題 No.406 鴨等間隔の法則
ユーザー Common LispCommon Lisp
提出日時 2024-10-09 18:34:20
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 451 bytes
コンパイル時間 50 ms
コンパイル使用メモリ 33,344 KB
実行使用メモリ 32,844 KB
最終ジャッジ日時 2024-10-09 18:34:24
合計ジャッジ時間 3,880 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
32,688 KB
testcase_01 AC 10 ms
29,860 KB
testcase_02 AC 9 ms
25,640 KB
testcase_03 AC 10 ms
27,856 KB
testcase_04 AC 100 ms
28,644 KB
testcase_05 AC 42 ms
26,280 KB
testcase_06 AC 44 ms
26,536 KB
testcase_07 AC 52 ms
30,504 KB
testcase_08 AC 103 ms
28,648 KB
testcase_09 AC 107 ms
28,512 KB
testcase_10 AC 49 ms
28,516 KB
testcase_11 AC 87 ms
28,776 KB
testcase_12 AC 59 ms
32,716 KB
testcase_13 AC 54 ms
28,768 KB
testcase_14 AC 92 ms
32,588 KB
testcase_15 AC 13 ms
26,152 KB
testcase_16 AC 16 ms
28,232 KB
testcase_17 AC 12 ms
25,900 KB
testcase_18 AC 15 ms
28,104 KB
testcase_19 AC 16 ms
25,896 KB
testcase_20 AC 20 ms
26,152 KB
testcase_21 AC 20 ms
26,152 KB
testcase_22 AC 30 ms
26,276 KB
testcase_23 AC 61 ms
30,552 KB
testcase_24 AC 84 ms
32,844 KB
testcase_25 AC 112 ms
32,588 KB
testcase_26 AC 112 ms
32,688 KB
testcase_27 AC 82 ms
28,644 KB
testcase_28 AC 82 ms
28,772 KB
testcase_29 AC 110 ms
30,680 KB
testcase_30 AC 109 ms
28,516 KB
testcase_31 AC 105 ms
32,692 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 09 OCT 2024 06:34:20 PM):

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

ソースコード

diff #

; ソートして 3 項ずつ等差数列になっているかチェックし
; 全て等差数列になっていれば YES それ以外は NO を出力
(defun main ()
  (let* ((n (read))
         (xs (sort (loop repeat n collect (read)) #'<)))
    (princ (if (loop for (x1 x2 x3) on xs
                     while x3
                     always (and (= (- x2 x1) (- x3 x2)) (/= x2 x1)))
               "YES"
               "NO"))
    (terpri)))
(main)
0