結果

問題 No.64 XORフィボナッチ数列
ユーザー mannshi222mannshi222
提出日時 2022-04-29 11:19:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 364 bytes
コンパイル時間 445 ms
コンパイル使用メモリ 67,648 KB
実行使用メモリ 10,144 KB
最終ジャッジ日時 2024-06-28 18:40:40
合計ジャッジ時間 6,924 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>

using namespace std;

int main()
{
	long long int N, F0, F1;

	cin >> F0 >> F1 >> N;
	if( N == 0 ) {
		cout << F0 << endl;
		return 0;
	}
	if( N == 1 ) {
		cout << F1 << endl;
		return 0;
	}
	long long int tmp;
	tmp = F0;
	for( long long int i = 0; i < N ; i++ ) {
		tmp = F0;
		F0 = F1;
		F1 = F1 ^ tmp;
	}
	cout << F0 << endl;


	return 0;
}
0