結果

問題 No.657 テトラナッチ数列 Easy
ユーザー Common LispCommon Lisp
提出日時 2024-11-02 19:21:15
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 576 bytes
コンパイル時間 528 ms
コンパイル使用メモリ 39,680 KB
実行使用メモリ 38,928 KB
最終ジャッジ日時 2024-11-02 19:21:18
合計ジャッジ時間 2,770 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
38,796 KB
testcase_01 AC 40 ms
36,908 KB
testcase_02 AC 40 ms
36,908 KB
testcase_03 AC 42 ms
34,868 KB
testcase_04 AC 41 ms
34,872 KB
testcase_05 AC 65 ms
38,820 KB
testcase_06 AC 41 ms
36,908 KB
testcase_07 AC 40 ms
38,792 KB
testcase_08 AC 41 ms
34,872 KB
testcase_09 AC 62 ms
38,824 KB
testcase_10 AC 59 ms
34,880 KB
testcase_11 AC 59 ms
34,752 KB
testcase_12 AC 60 ms
34,880 KB
testcase_13 AC 61 ms
34,872 KB
testcase_14 AC 62 ms
34,620 KB
testcase_15 AC 62 ms
38,928 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 02 NOV 2024 07:21:15 PM):

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

ソースコード

diff #

(defun main (&rest argv)
  (declare (ignorable argv))
  (let* ((a (make-array 1000005 :element-type 'integer))
         (b (make-array 5 :element-type 'integer))
         (q (read)))
    (dotimes (i 4)
      (setf (aref a i) (floor i 3)
            (aref b i) (floor i 3)))
    (loop for i from 4 to 1000000
          do (setf (aref b 4) (mod (+ (aref b 0) (aref b 1) (aref b 2) (aref b 3)) 17))
             (setf (aref a i) (aref b 4))
             (dotimes (j 4) (setf (aref b j) (aref b (1+ j)))))
    (dotimes (_ q)
      (format t "~d~%" (aref a (1- (read)))))))

(main)
0