結果

問題 No.3044 April Sum of Odd
ユーザー Lisp_CoderLisp_Coder
提出日時 2024-05-16 02:05:44
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 754 bytes
コンパイル時間 1,368 ms
コンパイル使用メモリ 35,392 KB
実行使用メモリ 30,140 KB
最終ジャッジ日時 2024-12-20 10:40:36
合計ジャッジ時間 1,053 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
25,900 KB
testcase_01 AC 10 ms
25,768 KB
testcase_02 AC 9 ms
25,896 KB
testcase_03 AC 14 ms
26,152 KB
testcase_04 AC 16 ms
26,152 KB
testcase_05 AC 17 ms
28,104 KB
testcase_06 AC 17 ms
26,276 KB
testcase_07 AC 13 ms
30,140 KB
testcase_08 AC 14 ms
26,276 KB
testcase_09 AC 17 ms
26,280 KB
testcase_10 AC 84 ms
28,732 KB
testcase_11 AC 34 ms
28,736 KB
testcase_12 AC 11 ms
30,012 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 20 DEC 2024 10:40:34 AM):

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

ソースコード

diff #

(defun main ()
  (let* ((n (read))
         (m (read))
         (a (make-array n)))

    ;; 入力を読み込む
    (dotimes (i n)
      (setf (aref a i) (read)))

    (let ((i 0))
      (loop while (< i n)
            do (when (oddp (aref a i))
                 (let ((ans (aref a i))
                       (ct 1)
                       (j (1+ i)))
                   (loop while (and (< j n) (oddp (aref a j)))
                         do (progn
                              (incf ct)
                              (incf ans (aref a j))
                              (incf j)))
                   (when (>= ct m)
                     (format t "~a~%" ans))
                   (setf i j)))
            (incf i)))))

;; Call the main function
(main)
0