結果

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

テストケース

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

ソースコード

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