結果

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

テストケース

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

ソースコード

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