結果

問題 No.64 XORフィボナッチ数列
ユーザー DrafearDrafear
提出日時 2016-01-18 03:55:28
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 519 bytes
コンパイル時間 1,158 ms
コンパイル使用メモリ 160,152 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-19 20:22:42
合計ジャッジ時間 1,709 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;

int solve(int f0, int f1, ll N) {
	if (f0 == 0 && f1 == 0) {
		return 0;
	}
	int idx = 0;
	if (f0 == 0 && f1 == 1) {
		idx = 2;
	}
	else if (f0 == 1 && f1 == 0) {
		idx = 1;
	}
	int a = (N + idx) % 3;
	return a == 2 ? 0 : 1;
}

int main() {
	ll f0, f1, N; cin >> f0 >> f1 >> N;
	ll f = 0;
	for (int i = 0; i < 18; ++i) {
		int a = f0 & (1LL << i) ? 1 : 0;
		int b = f1 & (1LL << i) ? 1 : 0;
		f |= (ll)solve(a, b, N) << i;
	}
	cout << f << endl;
}
0