結果
問題 | No.683 Two Operations No.3 |
ユーザー | posaune-0xa0 |
提出日時 | 2018-07-13 20:25:33 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 515 bytes |
コンパイル時間 | 395 ms |
コンパイル使用メモリ | 55,100 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-09 05:05:57 |
合計ジャッジ時間 | 992 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
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 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
ソースコード
#include <iostream> typedef long long ll; using namespace std; bool rec(ll a, ll b) { cout << a << " " << b << endl; if(a==0 || b==0) return true; if(a&1 && b&1) return false; else if(a&1) return rec(a-1, b>>1); else if(b&1) return rec(a>>1, b-1); else return rec(a>>1, b-1) | rec(a-1, b>>1); } int main(void) { ll A, B; cin >> A >> B; if(rec(A, B)) cout << "Yes" << endl; else cout << "No" << endl; return 0; }