結果

問題 No.2791 Beginner Contest
ユーザー Common LispCommon Lisp
提出日時 2024-11-02 16:46:07
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 16 ms / 2,000 ms
コード長 681 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 35,636 KB
実行使用メモリ 32,748 KB
最終ジャッジ日時 2024-11-02 16:46:09
合計ジャッジ時間 1,880 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
27,980 KB
testcase_01 AC 11 ms
29,860 KB
testcase_02 AC 13 ms
26,532 KB
testcase_03 AC 9 ms
25,768 KB
testcase_04 AC 10 ms
25,896 KB
testcase_05 AC 11 ms
30,016 KB
testcase_06 AC 15 ms
26,924 KB
testcase_07 AC 12 ms
32,020 KB
testcase_08 AC 11 ms
26,024 KB
testcase_09 AC 15 ms
28,692 KB
testcase_10 AC 16 ms
28,692 KB
testcase_11 AC 14 ms
30,732 KB
testcase_12 AC 16 ms
30,728 KB
testcase_13 AC 15 ms
32,624 KB
testcase_14 AC 12 ms
28,488 KB
testcase_15 AC 15 ms
32,748 KB
testcase_16 AC 11 ms
27,976 KB
testcase_17 AC 11 ms
32,016 KB
testcase_18 AC 13 ms
28,568 KB
testcase_19 AC 14 ms
28,692 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 02 NOV 2024 04:46:07 PM):

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

ソースコード

diff #

(defconstant +mod+ 998244353)

(defun main (&rest argv)
  (declare (ignorable argv))
  (let* ((n (read))
         (k (read))
         (dp1 (make-array (1+ n) :initial-element 0))
         (dp2 (make-array (1+ n) :initial-element 0)))
    (setf (aref dp1 0) 1)
    (setf (aref dp2 0) 1)
    (loop for i from 1 to n
          if (minusp (- i k))
            do (setf (aref dp1 i) 0)
          else
            do (incf (aref dp1 i) (aref dp2 (- i k)))
               (setf (aref dp1 i) (mod (aref dp1 i) +mod+))
          do (incf (aref dp2 i) (+ (aref dp2 (1- i)) (aref dp1 i)))
             (setf (aref dp2 i) (mod (aref dp2 i) +mod+)))
    (format t "~d~%" (aref dp2 n))))

(main)
0