結果

問題 No.31 悪のミックスジュース
ユーザー Common LispCommon Lisp
提出日時 2024-11-10 21:48:13
言語 Common Lisp
(sbcl 2.3.8)
結果
WA  
実行時間 -
コード長 1,147 bytes
コンパイル時間 495 ms
コンパイル使用メモリ 30,080 KB
実行使用メモリ 22,016 KB
最終ジャッジ日時 2024-11-10 21:48:15
合計ジャッジ時間 1,706 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
21,760 KB
testcase_01 AC 14 ms
22,016 KB
testcase_02 AC 15 ms
21,888 KB
testcase_03 AC 15 ms
22,016 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 8 ms
21,760 KB
testcase_07 AC 16 ms
22,016 KB
testcase_08 AC 15 ms
21,888 KB
testcase_09 AC 17 ms
22,016 KB
testcase_10 AC 14 ms
22,016 KB
testcase_11 AC 10 ms
21,888 KB
testcase_12 AC 12 ms
22,016 KB
testcase_13 AC 10 ms
21,760 KB
testcase_14 AC 15 ms
22,016 KB
testcase_15 AC 9 ms
21,888 KB
testcase_16 AC 10 ms
21,888 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 10 NOV 2024 09:48:13 PM):

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

ソースコード

diff #

(defconstant +inf+ 987654321987654321)

(defun main (&rest argv)
  (declare (ignorable argv))
  (let* ((n (read))
         (v (read))
         (k 1)
         (c (make-array 101 :element-type 'integer :initial-element 0))
         (dp (make-array 10001 :element-type 'integer))
         (res +inf+))
    (loop for i from 1 to n do
          (setf (aref c i) (read)
                (aref c i) (+ (aref c i) (aref c (- i 1)))))
    (loop for i from 2 to n
          when (> (* (aref c k) i) (* (aref c i) k))
            do (setq k i))
    (loop for i from 1  to 10000 do
          (setf (aref dp i) +inf+)
          (loop for j from 1 to n
                when (and (>= i j) (> (aref dp i) (+ (aref dp (- i j)) (aref c j))))
                  do (setf (aref dp i) (+ (aref dp (- i j)) (aref c j)))))
    (decf v n)
    (when (<= v 0)
          (setq res (aref c n)))
    (loop for i to 10000
          when (<= i v)
            do (let* ((r (floor (+ v k -1 (- i)) k))
                      (w (+ (aref c n) (aref dp i) (* r (aref c k)))))
                  (when (> res w)
                        (setq res w))))
    (format t "~d~%" res)))

(main)
0