結果

問題 No.64 XORフィボナッチ数列
ユーザー umaumaxumaumax
提出日時 2017-05-03 18:58:49
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 270 bytes
コンパイル時間 416 ms
コンパイル使用メモリ 55,500 KB
実行使用メモリ 10,144 KB
最終ジャッジ日時 2024-09-14 07:08:05
合計ジャッジ時間 7,043 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>

using namespace std;

int main(int argc, const char* argv[])
{
	uint64_t F0, F1, N;
	cin >> F0 >> F1 >> N;
	if (N == 1) {
		cout << F1 << endl;
		return 0;
	}
	for (uint64_t i = 2; i <= N; i++) {
		F0 = F1 ^ F0;
	}
	cout << F0 << endl;
	return 0;
}
0