結果

問題 No.3044 April Sum of Odd
ユーザー Lisp_CoderLisp_Coder
提出日時 2024-05-16 02:01:00
言語 Common Lisp
(sbcl 2.3.8)
結果
TLE  
実行時間 -
コード長 694 bytes
コンパイル時間 472 ms
コンパイル使用メモリ 35,240 KB
実行使用メモリ 35,716 KB
最終ジャッジ日時 2024-05-16 02:01:07
合計ジャッジ時間 5,524 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
32,836 KB
testcase_01 AC 11 ms
29,988 KB
testcase_02 AC 11 ms
27,936 KB
testcase_03 AC 68 ms
26,152 KB
testcase_04 AC 82 ms
30,244 KB
testcase_05 AC 61 ms
26,024 KB
testcase_06 AC 99 ms
28,236 KB
testcase_07 AC 21 ms
28,196 KB
testcase_08 AC 50 ms
26,152 KB
testcase_09 AC 76 ms
25,896 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 16 MAY 2024 02:01:01 AM):

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

ソースコード

diff #

(defun main ()
  (let* ((n (read))
         (m (read))
         (a (loop for i from 1 to n collect (read))))

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

;; Call the main function
(main)
0