結果

問題 No.64 XORフィボナッチ数列
ユーザー suakii
提出日時 2018-06-05 19:37:47
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2,437 ms / 5,000 ms
コード長 458 bytes
コンパイル時間 1,434 ms
コンパイル使用メモリ 158,580 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-30 10:03:19
合計ジャッジ時間 7,742 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef pair<int, int> pii;
typedef long long int ll;

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    
    ll a, b, c, n;
    cin >> a >> b >> n;
    if (n == 0)
        cout << a << endl;
    else if (n == 1)
        cout << b << endl;
    else {
        for (int i = 2; i <= n; i++) {
            c = a ^ b;
            a = b;
            b = c;
        }
        cout << c << endl;
    }

}
0