結果

問題 No.64 XORフィボナッチ数列
ユーザー Yang33
提出日時 2016-01-07 00:02:45
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 249 bytes
コンパイル時間 1,267 ms
コンパイル使用メモリ 53,976 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-19 12:25:54
合計ジャッジ時間 887 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<stdio.h>
using namespace std;
int main(void)
{
	long long f0, f1, n;

	cin >> f0 >> f1 >> n;

	if (n % 3 == 0)
		cout << f0 << endl;
	else if (n % 3 == 1)
		cout << f1 << endl;
	else  printf("%lld\n", f0^f1);
	return 0;
}
0