結果

問題 No.999 てん vs. ほむ
ユーザー Common LispCommon Lisp
提出日時 2024-11-02 21:13:00
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 495 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 39,812 KB
実行使用メモリ 32,908 KB
最終ジャッジ日時 2024-11-02 21:13:04
合計ジャッジ時間 4,561 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
26,024 KB
testcase_01 AC 10 ms
28,104 KB
testcase_02 AC 9 ms
26,024 KB
testcase_03 AC 9 ms
25,900 KB
testcase_04 AC 10 ms
30,012 KB
testcase_05 AC 10 ms
25,896 KB
testcase_06 AC 10 ms
27,984 KB
testcase_07 AC 10 ms
28,112 KB
testcase_08 AC 16 ms
32,236 KB
testcase_09 AC 155 ms
32,880 KB
testcase_10 AC 53 ms
28,696 KB
testcase_11 AC 38 ms
28,436 KB
testcase_12 AC 72 ms
28,692 KB
testcase_13 AC 166 ms
32,904 KB
testcase_14 AC 167 ms
28,820 KB
testcase_15 AC 166 ms
28,824 KB
testcase_16 AC 165 ms
28,696 KB
testcase_17 AC 105 ms
32,880 KB
testcase_18 AC 103 ms
28,696 KB
testcase_19 AC 105 ms
28,568 KB
testcase_20 AC 106 ms
28,692 KB
testcase_21 AC 161 ms
32,908 KB
testcase_22 AC 159 ms
28,828 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 02 NOV 2024 09:13:01 PM):

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

ソースコード

diff #

(defun main (&rest argv)
  (declare (ignorable argv))
  (let* ((n (read))
         (a (make-array 200005))
         (b (make-array n :initial-element 0)))
    (dotimes (i (* 2 n)) (setf (aref a i) (read)))
    (dotimes (i n) (setf (aref b i) (- (aref a (1+ (* 2 i))) (aref a (* 2 i)))))
    (loop with ans = (reduce #'+ b)
          with c = ans
          for i below n
          do (decf c (* 2 (aref b i)))
             (setq ans (max ans c))
          finally (format t "~d~%" ans))))

(main)
0