結果

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int main(){
  int a,b;cin >> a >> b;
  if(a==b){
    cout << 1 << endl;
    return 0;
  }
  int cnt=0;
  for(int i=0;i<31;i++){
    if(((a>>i)&1)&&!((b>>i)&1)){
      cout << 0 << endl;
      return 0;
    }
    if(!((a>>i)&1)&&((b>>i)&1)){
      cnt++;
    }
  }
  cout << (1LL<<(cnt-1)) << endl;
}
0