結果

問題 No.64 XORフィボナッチ数列
ユーザー goodbatongoodbaton
提出日時 2014-11-13 23:51:34
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 436 bytes
コンパイル時間 547 ms
コンパイル使用メモリ 65,680 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-06-10 02:43:02
合計ジャッジ時間 7,029 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:16:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   16 |     scanf("%lld%lld%lld",&f0,&f1,&n);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <string>
#include <cmath>
#include <algorithm>
#include <vector>
#include <queue>
#include <stack>

using namespace std;

int main(){
    long long f0,f1,f2,n;
    
    scanf("%lld%lld%lld",&f0,&f1,&n);
    
    for(long long i=2;i<=n;i++){
        f2=f1^f0;
        f0=f1;
        f1=f2;
    }
    
    cout << f1 << endl;
    
    return 0;
}
0