結果

問題 No.64 XORフィボナッチ数列
ユーザー rihitorihito
提出日時 2018-09-15 20:32:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 28 ms / 5,000 ms
コード長 421 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-18 07:12:26
合計ジャッジ時間 1,036 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#サンプルで考えると、2進数に変換 88 = 1011000、79 = 1001111
#F0 = 1011000, #F1 = 1001111  
#XORの挙動としては、0と0→0、1と1→0、0と1→1
# F2 = F0 XOR F1 = 0010111
# F3 = F1 XOR F2 = 1011000 (=F0)
# F4 = F2 XOR F3 = 1001111 (=F1)
# N = 3の周期で回っていることが分かる。


F0, F1, N = map(int, input().split())
F = [F0, F1, F0 ^ F1]
# 「^」はXORと同じ。
print(F[N%3])
0