結果

問題 No.64 XORフィボナッチ数列
ユーザー Kurichan0806Kurichan0806
提出日時 2017-12-12 17:30:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 374 bytes
コンパイル時間 753 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-05-08 04:57:17
合計ジャッジ時間 7,236 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <iomanip>
#include <functional>
#include <cmath>
using namespace std;
#define lli long long int
lli a, b;

lli fib(lli n) {
	if (n == 0)	return a;
	if (n == 1) return b;
	return fib(n - 1) ^ fib(n - 2);
}

int main() {
	lli n, x;
	cin >> a >> b >> n;
	cout << fib(n) << endl;
	return 0;
}
0