結果
問題 | No.1268 Fruit Rush 2 |
ユーザー | Common Lisp |
提出日時 | 2024-11-11 20:40:41 |
言語 | Common Lisp (sbcl 2.3.8) |
結果 |
WA
|
実行時間 | - |
コード長 | 716 bytes |
コンパイル時間 | 521 ms |
コンパイル使用メモリ | 47,832 KB |
実行使用メモリ | 34,652 KB |
最終ジャッジ日時 | 2024-11-11 20:40:49 |
合計ジャッジ時間 | 7,653 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 10 ms
22,144 KB |
testcase_04 | AC | 9 ms
21,760 KB |
testcase_05 | AC | 9 ms
21,760 KB |
testcase_06 | AC | 9 ms
21,888 KB |
testcase_07 | AC | 9 ms
21,888 KB |
testcase_08 | AC | 10 ms
21,888 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 11 NOV 2024 08:40:42 PM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.059
ソースコード
(defun main (&rest argv) (declare (ignorable argv)) (let* ((n (read)) (a (make-array n :element-type 'integer)) (dp (make-array (1+ n) :element-type 'integer :initial-element 0)) (res n)) (dotimes (i n) (setf (aref a i) (read))) (sort a #'<) (loop for i from n downto 0 do (when (and (< (+ i 1) n) (= (+ (aref a i) 2) (aref a (+ i 1)))) (setf (aref dp i) (1+ (aref dp (+ i 1))))) (when (and (< (+ i 2) n) (= (+ (aref a i) 2) (aref a (+ i 2)))) (setf (aref dp i) (1+ (aref dp (+ i 2)))))) (loop for i below (1- n) when (/= (1+ (aref a i)) (aref a (1+ i))) do (incf res (1+ (aref dp (1+ i))))) (format t "~d~%" res))) (main)