結果
問題 | No.64 XORフィボナッチ数列 |
ユーザー | netyo715 |
提出日時 | 2021-06-28 09:49:15 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 190 bytes |
コンパイル時間 | 268 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-06-25 12:03:03 |
合計ジャッジ時間 | 1,660 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
10,624 KB |
testcase_01 | AC | 27 ms
10,880 KB |
testcase_02 | AC | 27 ms
10,624 KB |
testcase_03 | AC | 27 ms
10,752 KB |
testcase_04 | AC | 27 ms
10,880 KB |
testcase_05 | AC | 27 ms
10,752 KB |
testcase_06 | WA | - |
testcase_07 | AC | 28 ms
10,880 KB |
testcase_08 | AC | 28 ms
10,752 KB |
testcase_09 | WA | - |
testcase_10 | AC | 27 ms
10,752 KB |
testcase_11 | AC | 28 ms
10,752 KB |
testcase_12 | AC | 28 ms
10,624 KB |
testcase_13 | AC | 27 ms
10,752 KB |
ソースコード
F0, F1, N = map(int, input().split()) if N==0: print(F0) exit() if N==1: print(F1) exit() N %= 3 N -= 1 F = [F0, F1] for i in range(N): F.append(F[-1]^F[-2]) print(F[-1])