結果

問題 No.64 XORフィボナッチ数列
ユーザー まんしmaNNshi
提出日時 2025-04-05 12:02:49
言語 Common Lisp
(sbcl 2.5.0)
結果
AC  
実行時間 10 ms / 5,000 ms
コード長 309 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 25,600 KB
実行使用メモリ 19,712 KB
最終ジャッジ日時 2025-04-05 12:02:53
合計ジャッジ時間 1,476 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 11
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 05 APR 2025 12:02:49 PM):

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

ソースコード

diff #

(defvar F0)
(defvar F1)
(defvar N)
(defvar temp)
(setq temp (read-from-string (concatenate 'string "(" (read-line) ")")))

(setq F0 (nth 0 temp))
(setq F1 (nth 1 temp))
(setq N  (nth 2 temp))
;(format t "~d ~d~%" N M)

(setq temp 0)
(format t "~d~%" (case (mod N 3) (0 F0) (1 F1) (otherwise (logxor F0 F1))))
0