結果
問題 | No.64 XORフィボナッチ数列 |
ユーザー | Mario |
提出日時 | 2018-05-06 02:05:16 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 241 bytes |
コンパイル時間 | 76 ms |
コンパイル使用メモリ | 12,288 KB |
実行使用メモリ | 16,128 KB |
最終ジャッジ日時 | 2024-06-28 02:05:07 |
合計ジャッジ時間 | 6,678 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
16,128 KB |
testcase_01 | AC | 32 ms
10,496 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
ソースコード
def biFibonacci(k, f0, f1): if k == 0: return f0 elif k == 1: return f1 else: return biFibonacci(k-1, f0, f1) ^ biFibonacci(k-2, f0, f1) f0, f1, n = map(int, input().split()) print(biFibonacci(n, f0, f1))