結果

問題 No.64 XORフィボナッチ数列
ユーザー まんしmaNNshi
提出日時 2025-04-05 12:01:06
言語 Common Lisp
(sbcl 2.5.0)
結果
WA  
実行時間 -
コード長 404 bytes
コンパイル時間 2,123 ms
コンパイル使用メモリ 30,952 KB
実行使用メモリ 27,668 KB
最終ジャッジ日時 2025-04-05 12:01:09
合計ジャッジ時間 2,156 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 8 WA * 3
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 05 APR 2025 12:01:06 PM):

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

ソースコード

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)
(loop for i from 2 to (mod N 3) do
	(setq temp f1)
	(setq f1 (logxor f0 f1) )
	(setq f0 temp))
(format t "~d~%" (case (mod N 3) (0 F0) (1 F1) (otherwise (logxor F0 F1))))
0