結果
問題 | No.64 XORフィボナッチ数列 |
ユーザー | TANIGUCHI Kousuke |
提出日時 | 2015-05-18 13:53:17 |
言語 | Ruby (3.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 262 bytes |
コンパイル時間 | 40 ms |
コンパイル使用メモリ | 7,296 KB |
実行使用メモリ | 14,976 KB |
最終ジャッジ日時 | 2024-07-06 05:23:54 |
合計ジャッジ時間 | 1,823 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 82 ms
12,288 KB |
testcase_01 | AC | 74 ms
12,160 KB |
testcase_02 | AC | 72 ms
12,160 KB |
testcase_03 | AC | 73 ms
12,160 KB |
testcase_04 | AC | 74 ms
12,160 KB |
testcase_05 | AC | 75 ms
12,288 KB |
testcase_06 | AC | 76 ms
12,160 KB |
testcase_07 | AC | 78 ms
12,160 KB |
testcase_08 | AC | 76 ms
12,032 KB |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | AC | 74 ms
12,288 KB |
testcase_13 | RE | - |
コンパイルメッセージ
Syntax OK
ソースコード
F0, F1, n = gets.split.map(&:to_i) MEMO = {} def fib_xor(n) case n when 1 F1 when 0 F0 else unless MEMO[n] MEMO[n] ||= fib_xor(n-1) ^ fib_xor(n-2) end MEMO[n] end end puts fib_xor(n)