結果

問題 No.533 Mysterious Stairs
ユーザー Common LispCommon Lisp
提出日時 2024-11-08 13:30:14
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 179 ms / 5,000 ms
コード長 666 bytes
コンパイル時間 1,553 ms
コンパイル使用メモリ 29,440 KB
実行使用メモリ 53,120 KB
最終ジャッジ日時 2024-11-08 13:30:18
合計ジャッジ時間 3,721 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
21,888 KB
testcase_01 AC 8 ms
21,888 KB
testcase_02 AC 8 ms
21,760 KB
testcase_03 AC 7 ms
21,888 KB
testcase_04 AC 8 ms
21,888 KB
testcase_05 AC 8 ms
21,888 KB
testcase_06 AC 8 ms
21,760 KB
testcase_07 AC 8 ms
21,888 KB
testcase_08 AC 8 ms
21,760 KB
testcase_09 AC 8 ms
21,888 KB
testcase_10 AC 8 ms
21,888 KB
testcase_11 AC 9 ms
21,760 KB
testcase_12 AC 8 ms
21,888 KB
testcase_13 AC 9 ms
21,888 KB
testcase_14 AC 9 ms
21,888 KB
testcase_15 AC 9 ms
21,760 KB
testcase_16 AC 9 ms
22,016 KB
testcase_17 AC 9 ms
21,888 KB
testcase_18 AC 9 ms
22,144 KB
testcase_19 AC 10 ms
22,144 KB
testcase_20 AC 27 ms
25,344 KB
testcase_21 AC 29 ms
25,728 KB
testcase_22 AC 74 ms
33,920 KB
testcase_23 AC 179 ms
52,864 KB
testcase_24 AC 179 ms
53,120 KB
testcase_25 AC 28 ms
25,472 KB
testcase_26 AC 156 ms
49,024 KB
testcase_27 AC 50 ms
29,952 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 08 NOV 2024 01:30:14 PM):

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

ソースコード

diff #

(defconstant +mod+ 1000000007)

(defun main (&rest argv)
  (declare (ignorable argv))
  (let* ((n (read))
         (dp (make-array (list (1+ n) 4) :initial-element 0)))
    (setf (aref dp 0 0) 1)
    (loop for i from 1 to n do
          (loop for j from 1 below 4
                when (>= i j)
                  do (dotimes (k 4)
                       (when (/= j k)
                             (incf (aref dp i j)
                                   (aref dp (- i j) k))))
                     (setf (aref dp i j) (mod (aref dp i j) +mod+))))
    (format t "~d~%" (mod (loop for i from 0 below 4
                                sum (aref dp n i)) +mod+))))

(main)
0