結果

問題 No.64 XORフィボナッチ数列
ユーザー Lay_ecLay_ec
提出日時 2014-11-11 23:36:56
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 465 bytes
コンパイル時間 503 ms
コンパイル使用メモリ 71,900 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-10 02:29:26
合計ジャッジ時間 1,022 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream> 
#include <string> 
#include <vector> 
#include <cmath> 
#include <algorithm> 
#include <cstdlib> 
#include <ctime> 
#include <cstdio> 
#include <functional> 
#include <set> 
#include <sstream> 
#include <cctype>

using namespace std; 


int main(){

	long long f0,f1,n;
	cin>>f0>>f1>>n;

	if(n==0) cout<<f0<<endl;
	else if(n==1) cout<<f1<<endl;
	else if(n%2) cout<<(f0^f1)<<endl;
	else cout<<f1<<endl;


	return 0;
}
0