結果

問題 No.939 and or
ユーザー trineutrontrineutron
提出日時 2019-12-02 03:33:35
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 295 bytes
コンパイル時間 1,773 ms
コンパイル使用メモリ 165,416 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-22 06:13:44
合計ジャッジ時間 3,136 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    long a, b, x, d = 0;
    cin >> a >> b;
    x = a ^ b;
    if ((a & b) != a) {
        cout << 0 << endl;
        return 0;
    }
    while (x) {
        d += x % 2;
        x /= 2;
    }
    cout << ((1l << d) + 1) / 2 << endl;
}
0