結果
問題 | No.64 XORフィボナッチ数列 |
ユーザー | 👑 obakyan |
提出日時 | 2019-03-31 21:04:08 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,316 bytes |
コンパイル時間 | 848 ms |
コンパイル使用メモリ | 75,696 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-22 10:19:07 |
合計ジャッジ時間 | 1,676 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 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 | 2 ms
5,248 KB |
testcase_13 | WA | - |
ソースコード
#include <cstdio> #include <cstdlib> #include <cstddef> #include <vector> #include <algorithm> #include <cmath> #include <string> #include <iostream> #include <iomanip> int main(void) { long f0, f1, n; std::cin >> f0 >> f1 >> n; std::vector<long> v0, v1; while(0 < f0){ v0.push_back(f0 % 2); f0 /= 2; } while(0 < f1){ v1.push_back(f1 % 2); f1 /= 2; } if(v0.size() < v1.size()){ for(long i = v0.size(); i < (long)v1.size(); i++){ v0.push_back(0); } } else if(v1.size() < v0.size()){ for(long i = v1.size(); i < (long)v0.size(); i++){ v1.push_back(0); } } long sz = v1.size(); long res = 0; for(long i = 0; i < sz; i++){ // 1, 0, 1, 1, 0, ... // 0, 0, 0, ... long b0 = v0[i]; long b1 = v1[i]; if(b0 == 0){ if(b1 == 1){ if(n % 3 != 0){ res += 1 << i; } } } else { if(b1 == 0){ if(n % 3 != 1){ res += 1 << i; } } else { if(n % 3 != 2){ res += 1 << i; } } } } std::cout << res << std::endl; return 0; }