結果
| 問題 |
No.64 XORフィボナッチ数列
|
| コンテスト | |
| ユーザー |
neko_the_shadow
|
| 提出日時 | 2017-01-15 19:34:18 |
| 言語 | Scheme (Gauche-0.9.15) |
| 結果 |
AC
|
| 実行時間 | 26 ms / 5,000 ms |
| コード長 | 252 bytes |
| コンパイル時間 | 65 ms |
| コンパイル使用メモリ | 5,248 KB |
| 実行使用メモリ | 16,000 KB |
| 最終ジャッジ日時 | 2024-12-21 13:45:51 |
| 合計ジャッジ時間 | 1,132 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 11 |
ソースコード
(define (solve f0 f1 n)
(let ((f2 (logxor f0 f1))
(mod (modulo n 3)))
(cond ((= mod 0) f0)
((= mod 1) f1)
((= mod 2) f2))))
(print (apply solve (map string->number (string-split (read-line) #\space))))
neko_the_shadow