結果

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

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<ll, ll> P;

int main()
{
    int a, b;
	cin>>a>>b;
	ll ans=1;
	for(int i=0; i<31; i++){
		int x=((a>>i)&1), y=((b>>i)&1);
		if(x==0 && y==1) ans*=2;
		else if(x==1 && y==0){
			cout<<0<<endl;
			return 0;
		}
	}
	if(a==b){
		cout<<1<<endl;
	}else{
		ans/=2;
		cout<<ans<<endl;
	}
    return 0;
}
0