結果
問題 | No.64 XORフィボナッチ数列 |
ユーザー | motxx |
提出日時 | 2014-11-29 16:34:35 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 556 bytes |
コンパイル時間 | 1,962 ms |
コンパイル使用メモリ | 162,824 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-11 07:24:35 |
合計ジャッジ時間 | 2,140 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 3 ms
5,376 KB |
testcase_13 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:28:11: warning: ‘fn’ may be used uninitialized in this function [-Wmaybe-uninitialized] 28 | cout << fn << endl; | ^~
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i,a,b) for(int i=a;i<(int)b;i++) #define rep(i,n) REP(i,0,n) void bit_print(int x) { vector<int> b; while(x > 0) { b.push_back(x & 1); x >>= 1; } reverse(b.begin(), b.end()); rep(i, b.size()) { cout << b[i]; }cout << endl; } int main() { int f0, f1, f2, N; cin >> f0 >> f1 >> N; f2 = f0 ^ f1; int fn; if(N % 3 == 0) { fn = f0; } if(N % 3 == 1) { fn = f1; } if(N % 3 == 2) { fn = f2; } cout << fn << endl; return 0; }