結果
問題 | No.595 登山 |
ユーザー | Common Lisp |
提出日時 | 2024-11-12 20:45:00 |
言語 | Common Lisp (sbcl 2.3.8) |
結果 |
AC
|
実行時間 | 167 ms / 1,500 ms |
コード長 | 827 bytes |
コンパイル時間 | 482 ms |
コンパイル使用メモリ | 64,024 KB |
実行使用メモリ | 36,852 KB |
最終ジャッジ日時 | 2024-11-12 20:45:06 |
合計ジャッジ時間 | 4,973 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 9 ms
25,896 KB |
testcase_01 | AC | 9 ms
27,852 KB |
testcase_02 | AC | 9 ms
25,896 KB |
testcase_03 | AC | 13 ms
29,984 KB |
testcase_04 | AC | 127 ms
30,620 KB |
testcase_05 | AC | 37 ms
28,664 KB |
testcase_06 | AC | 92 ms
30,744 KB |
testcase_07 | AC | 18 ms
28,492 KB |
testcase_08 | AC | 22 ms
28,488 KB |
testcase_09 | AC | 92 ms
34,696 KB |
testcase_10 | AC | 68 ms
30,744 KB |
testcase_11 | AC | 71 ms
28,572 KB |
testcase_12 | AC | 15 ms
26,280 KB |
testcase_13 | AC | 33 ms
32,660 KB |
testcase_14 | AC | 67 ms
32,792 KB |
testcase_15 | AC | 64 ms
32,664 KB |
testcase_16 | AC | 65 ms
36,848 KB |
testcase_17 | AC | 65 ms
34,700 KB |
testcase_18 | AC | 67 ms
32,792 KB |
testcase_19 | AC | 145 ms
32,668 KB |
testcase_20 | AC | 146 ms
36,852 KB |
testcase_21 | AC | 145 ms
32,660 KB |
testcase_22 | AC | 146 ms
34,828 KB |
testcase_23 | AC | 167 ms
36,848 KB |
testcase_24 | AC | 8 ms
25,768 KB |
testcase_25 | AC | 7 ms
25,640 KB |
testcase_26 | AC | 149 ms
32,792 KB |
testcase_27 | AC | 107 ms
32,664 KB |
testcase_28 | AC | 108 ms
36,748 KB |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 12 NOV 2024 08:45:01 PM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.212
ソースコード
(defconstant +inf+ 987654321987654321) (defun main (&rest argv) (declare (ignorable argv)) (let* ((*read-default-float-format* 'double-float) (n (read)) (p (read)) (h (make-array n :element-type 'integer)) (dp1 (make-array n :element-type 'integer :initial-element +inf+)) (dp2 (make-array n :element-type 'integer :initial-element +inf+))) (dotimes (i n) (setf (aref h i) (read))) (setf (aref dp1 0) 0) (loop for i from 1 below n do (setf (aref dp1 i) (min (+ p (aref dp2 (1- i))) (+ (aref dp1 (1- i)) (min (max (- (aref h i) (aref h (1- i))) 0) p))) (aref dp2 i) (min (+ p (aref dp1 (1- i))) (+ (aref dp2 (1- i)) (min (max (- (aref h (1- i)) (aref h i)) 0) p))))) (format t "~d~%" (min (aref dp1 (1- n)) (aref dp2 (1- n)))))) (main)