当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

6702:^&^

题目描述
Bit operation is a common computing method in computer science ,Now we have two positive integers $A$ and $B$ ,Please find a positive integer $C$ that minimize the value of the formula $(A \ \ xor \ \ C) \ \ \& \ \ (B \ \ xor \ \ C) $ .Sometimes we can find a lot of $C$ to do this ,So you need to find the smallest $C$ that meets the criteria .

For example ,Let's say $A$ is equal to 5 and $B$ is equal to 3 ,we can choose $C$=1,3.... ,so the answer we're looking for $C$ is equal to 1.

If the value of the expression is 0 when C=0, please print 1.
输入解释
The input file contains $T$ test samples.(1<=$T$<=100)

The first line of input file is an integer $T$.

Then the $T$ lines contains 2 positive integers, $A$ and $B$, ($ 1 \leq A, B < 2 ^ {32} $)
输出解释
For each test case,you should output the answer and a line for each answer.
输入样例
1
3 5
输出样例
1
来自杭电HDUOJ的附加信息
Recommend liuyiding

该题目是Virtual Judge题目,来自 杭电HDUOJ

源链接: HDU-6702

最后修改于 2020-10-25T23:33:38+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
2000/1000MS(Java/Others) 65536/65536K(Java/Others)