結果

問題 No.64 XORフィボナッチ数列
ユーザー Kurichan0806Kurichan0806
提出日時 2017-12-12 17:25:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 496 bytes
コンパイル時間 788 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 784,832 KB
最終ジャッジ日時 2024-05-08 04:56:00
合計ジャッジ時間 14,460 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 MLE -
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 TLE -
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
#define MAX 100000000 + 1
lli dp[MAX];

lli fib(lli n) {
	//cout << n << " " << dp[n] << endl;
	if (dp[n] > -1)
		return dp[n];
	else
		return dp[n] = fib(n - 1) ^ fib(n - 2);
}

int main() {
	for (int i = 0; i < MAX; i++)
		dp[i] = -5;
	lli n, x;
	cin >> dp[0] >> dp[1] >> n;
	cout << fib(n) << endl;
	return 0;
}
0