結果

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

テストケース

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

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

ソースコード

diff #

  (defconstant +inf+ 1000000000000000000)

  (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