結果

問題 No.64 XORフィボナッチ数列
ユーザー jjwattjjwatt
提出日時 2020-03-27 12:45:57
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 230 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 12,032 KB
実行使用メモリ 20,224 KB
最終ジャッジ日時 2025-01-02 08:31:36
合計ジャッジ時間 25,265 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
20,224 KB
testcase_01 AC 29 ms
16,928 KB
testcase_02 AC 28 ms
20,096 KB
testcase_03 AC 29 ms
17,060 KB
testcase_04 AC 28 ms
9,984 KB
testcase_05 AC 28 ms
10,240 KB
testcase_06 AC 29 ms
10,240 KB
testcase_07 AC 31 ms
9,984 KB
testcase_08 AC 30 ms
10,112 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 29 ms
10,112 KB
testcase_13 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,n=map(int,input().split())
def Fib(n):
    global a
    global b
    if n == 0:
        return a
    elif n == 1:
        return b
    else:
        for i in range(n-1):
            a, b = b, a^b
        return b
print(Fib(n))
0