結果

問題 No.64 XORフィボナッチ数列
ユーザー syunsukesyunsuke
提出日時 2020-11-01 15:09:56
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 100 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 87,256 KB
実行使用メモリ 848,972 KB
最終ジャッジ日時 2023-09-29 11:16:21
合計ジャッジ時間 4,143 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,284 KB
testcase_01 AC 72 ms
71,544 KB
testcase_02 AC 71 ms
71,640 KB
testcase_03 AC 70 ms
71,520 KB
testcase_04 AC 72 ms
71,324 KB
testcase_05 AC 74 ms
71,488 KB
testcase_06 AC 71 ms
71,368 KB
testcase_07 AC 72 ms
71,296 KB
testcase_08 AC 70 ms
71,400 KB
testcase_09 MLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B,N=map(int,input().split())
F=[A,B]
for i in range(2,N+1):
    F.append(F[-1]^F[-2])
print(F[N])
0