結果

問題 No.939 and or
ユーザー hirokazu1020hirokazu1020
提出日時 2019-12-06 00:41:57
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 939 bytes
コンパイル時間 1,040 ms
コンパイル使用メモリ 96,020 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-23 04:38:58
合計ジャッジ時間 1,811 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
#include<sstream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<climits>
#include<cmath>
#include<string>
#include<vector>
#include<set>
#include<map>
#include<queue>
#include<numeric>
#include<functional>
#include<algorithm>
#include<bitset>
#include<tuple>
#include<unordered_set>
#include<unordered_map>
#include<random>
#include<array>
#include<cassert>
using namespace std;
#define INF (1<<29)
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define all(v) v.begin(),v.end()
#define uniq(v) v.erase(unique(all(v)),v.end())




int main() {
	ios::sync_with_stdio(0);
	cin.tie(0);

	int a, b;
	cin >> a >> b;

	int cnt = 0;

	rep(i, 31) {
		int x = a >> i & 1, y = b >> i & 1;


		if (x == 1 && y == 0) {
			cout << 0 << endl;
			return 0;
		}
		if (x == 0 && y == 1) {
			cnt++;
		}
	}

	if (cnt == 0)cout << 1 << endl;
	else cout << (1 << cnt - 1) << endl;

	return 0;
}
0