結果

問題 No.64 XORフィボナッチ数列
ユーザー mokraimokrai
提出日時 2017-11-19 03:18:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 477 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-05-04 10:04:07
合計ジャッジ時間 933 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 24 ms
10,752 KB
testcase_05 WA -
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 26 ms
10,880 KB
testcase_08 WA -
testcase_09 AC 25 ms
10,752 KB
testcase_10 AC 25 ms
10,752 KB
testcase_11 AC 25 ms
10,752 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 AC 26 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    F0, F1, N = map(int, input().split())
    F0_xor_F1 = get_xor(F0, F1)

    if N % 3 == 0:
        print(F0)
    elif N % 3 == 1:
        print(F1)
    else:
        print(F0_xor_F1)

def get_xor(a, b):
    ans = ""
    a_bin = format(a, 'b')
    b_bin = format(b, 'b')
    for a, b in zip(list(a_bin), list(b_bin)):
        if a == b:
            ans += "0"
        else:
            ans += "1"
    return int(ans, 2)

if __name__ == '__main__':
        main()
0