結果

問題 No.1375 Divide and Update
ユーザー linuxmetellinuxmetel
提出日時 2021-02-05 22:30:30
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 520 ms / 2,000 ms
コード長 1,094 bytes
コンパイル時間 1,042 ms
コンパイル使用メモリ 37,400 KB
実行使用メモリ 36,224 KB
最終ジャッジ日時 2024-07-02 13:03:59
合計ジャッジ時間 7,595 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
21,888 KB
testcase_01 AC 9 ms
21,888 KB
testcase_02 AC 8 ms
21,888 KB
testcase_03 AC 8 ms
21,888 KB
testcase_04 AC 9 ms
21,888 KB
testcase_05 AC 9 ms
21,888 KB
testcase_06 AC 8 ms
21,888 KB
testcase_07 AC 8 ms
21,888 KB
testcase_08 AC 8 ms
21,888 KB
testcase_09 AC 8 ms
21,760 KB
testcase_10 AC 397 ms
34,176 KB
testcase_11 AC 390 ms
33,280 KB
testcase_12 AC 198 ms
28,160 KB
testcase_13 AC 168 ms
27,136 KB
testcase_14 AC 458 ms
36,224 KB
testcase_15 AC 513 ms
35,968 KB
testcase_16 AC 483 ms
35,968 KB
testcase_17 AC 520 ms
36,224 KB
testcase_18 AC 512 ms
36,224 KB
testcase_19 AC 481 ms
36,096 KB
testcase_20 AC 369 ms
36,096 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 02 JUL 2024 01:03:49 PM):

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

ソースコード

diff #

(defvar n (read))
(defvar x (read))
(defvar y (read))

(defvar a (loop repeat n
                collect (read)))

(defvar s (apply #'+ a))

(defvar ax (apply #'vector (let ((m #.DOUBLE-FLOAT-NEGATIVE-INFINITY)
                                 (b #.DOUBLE-FLOAT-NEGATIVE-INFINITY))
                             (loop for i in a
                                   do (setq b (max (- x i) (+ b (- x i)))
                                            m (max m b))
                                   collect m))))

(defvar bx (nreverse (apply #'vector (let ((m #.DOUBLE-FLOAT-NEGATIVE-INFINITY)
                                           (b #.DOUBLE-FLOAT-NEGATIVE-INFINITY))
                                       (loop for i in (nreverse a)
                                             do (setq b (max (- y i) (+ b (- y i)))
                                                      m (max m b))
                                             collect m)))))



(loop for m from 1 to (- n 2)
      do (princ (+ s (aref ax (1- m)) (aref bx (1+ m))))
         (fresh-line))
;(princ ax)
;(princ bx)
;(princ s)
0