結果
問題 | No.939 and or |
ユーザー |
|
提出日時 | 2019-12-02 19:40:47 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 731 bytes |
コンパイル時間 | 1,849 ms |
コンパイル使用メモリ | 157,436 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-24 16:55:19 |
合計ジャッジ時間 | 2,293 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 30 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<ll, ll> P; typedef pair<pair<int, int>, int> PP; const ll INF = 1LL << 60; const ll MOD = 1000000007; int GCD(int a, int b) { return b ? GCD(b, a%b) : a; } //------------------------------------------------------------------------------------------------------------------------------ int main(void) { ll A, B; int ans = 1; cin >> A >> B; bool flag = false; for (int i = 60; i >= 0; i--) { ll d = 1LL << i; if ((A & d) && !(B & d)) { ans = 0; } else if(!(A & d) && (B & d)){ if (!flag) flag = true; else ans *= 2; } } cout << ans << endl; }