結果

問題 No.64 XORフィボナッチ数列
ユーザー maicunemaicune
提出日時 2019-09-02 21:51:06
言語 C++11
(gcc 11.4.0)
結果
MLE  
実行時間 -
コード長 271 bytes
コンパイル時間 1,202 ms
コンパイル使用メモリ 160,940 KB
実行使用メモリ 814,668 KB
最終ジャッジ日時 2024-12-17 18:15:08
合計ジャッジ時間 9,178 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
int main(){
    ll a,b,n,ans;
    cin>>a>>b>>n;
    vector<ll> f;
    f.emplace_back(a);
    f.emplace_back(b);
    for(int i=2;i<=n;++i)f.emplace_back(f[i-1]^f[i-2]);
    ans=f[n];
    cout<<ans<<endl;
}
0