atcoder#ABC238D. [ABC238D] AND and SUM
[ABC238D] AND and SUM
Score : points
Problem Statement
Solve the following problem for test cases.
Given are non-negative integers and . Is there a pair of non-negative integers that satisfies both of the conditions below?
What is bitwise $\mathrm{AND}$?
The bitwise of integers and , , is defined as follows:
- When is written in base two, the digit in the 's place () is if those of and are both , and otherwise.
For example, we have (in base two: ).
</details>Constraints
- All values in input are integers.
Input
Input is given from Standard Input. The first line is in the following format:
Then, test cases follow. Each test case is in the following format:
Output
Print lines. The -th line should contain Yes
if, in the -th test case, there is a pair of non-negative integers that satisfies both of the conditions in the Problem Statement, and No
otherwise.
2
1 8
4 2
Yes
No
In the first test case, some pairs such as satisfy the conditions.
In the second test case, no pair of non-negative integers satisfies the conditions.
4
201408139683277485 381410962404666524
360288799186493714 788806911317182736
18999951915747344 451273909320288229
962424162689761932 1097438793187620758
No
Yes
Yes
No