結果

問題 No.64 XORフィボナッチ数列
ユーザー rlangevinrlangevin
提出日時 2024-10-09 12:09:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 141 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 53,060 KB
最終ジャッジ日時 2024-10-09 12:09:58
合計ジャッジ時間 2,053 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,336 KB
testcase_01 AC 37 ms
52,360 KB
testcase_02 AC 37 ms
52,628 KB
testcase_03 AC 37 ms
53,012 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 37 ms
52,124 KB
testcase_06 AC 40 ms
52,796 KB
testcase_07 AC 36 ms
52,912 KB
testcase_08 AC 37 ms
52,708 KB
testcase_09 AC 38 ms
51,952 KB
testcase_10 AC 38 ms
52,164 KB
testcase_11 AC 37 ms
52,224 KB
testcase_12 AC 41 ms
53,060 KB
testcase_13 AC 37 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

f0, f1, N = map(int, input().split())
F = [f0, f1]
for _ in range(3):
    F.append(F[-1]^F[-2])
print(F[(N-2)%3+2]) if N > 1 else print(F[N])
0