結果
問題 | No.683 Two Operations No.3 |
ユーザー | Mister |
提出日時 | 2020-08-02 15:47:52 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 478 bytes |
コンパイル時間 | 581 ms |
コンパイル使用メモリ | 68,136 KB |
実行使用メモリ | 13,880 KB |
最終ジャッジ日時 | 2024-07-18 15:22:39 |
合計ジャッジ時間 | 4,281 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
ソースコード
#include <iostream> using lint = long long; bool dfs(lint a, lint b) { if (a == 0 && b == 0) return true; if (a % 2 == 0 && b > 0 && dfs(a / 2, b - 1)) return true; if (a > 0 && b % 2 == 0 && dfs(a - 1, b % 2)) return true; return false; } void solve() { lint a, b; std::cin >> a >> b; std::cout << (dfs(a, b) ? "Yes" : "No") << "\n"; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }