結果

問題 No.939 and or
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2019-12-02 01:51:26
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 633 bytes
コンパイル時間 1,289 ms
コンパイル使用メモリ 158,092 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-22 02:39:13
合計ジャッジ時間 2,343 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
#define REP(i, n) for(int i = 0; i < int(n); i++)
#define FOR(i,n,m) for(int i = int(n); i < int(m); i++)
using namespace std;
typedef long long ll;
const int MOD = 1e9 + 7;
const int INF = 1e9 + 6;
const ll LLINF = 1e18 + 1;

int bitpopcount(ll n) {
    int res = 0;
    while (n) {
        if (n & 1) res++;
        n >>= 1;
    }
    return res;
}

int main() {
    ll a, b; cin >> a >> b;
    if ((a | b) != b) {
        cout << 0 << endl;
        return 0;
    }
    if (a == b) {
        cout << 1 << endl;
        return 0;
    }
    cout << ll(pow(2LL, bitpopcount(a^b) - 1)) << endl;
    return 0;
}
0