CF1928A.Rectangle Cutting
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Bob has a rectangle of size a×b . He tries to cut this rectangle into two rectangles with integer sides by making a cut parallel to one of the sides of the original rectangle. Then Bob tries to form some other rectangle from the two resulting rectangles, and he can rotate and move these two rectangles as he wishes.
Note that if two rectangles differ only by a 90∘ rotation, they are considered the same. For example, the rectangles 6×4 and 4×6 are considered the same.
Thus, from the 2×6 rectangle, another rectangle can be formed, because it can be cut into two 2×3 rectangles, and then these two rectangles can be used to form the 4×3 rectangle, which is different from the 2×6 rectangle.
However, from the 2×1 rectangle, another rectangle cannot be formed, because it can only be cut into two rectangles of 1×1 , and from these, only the 1×2 and 2×1 rectangles can be formed, which are considered the same.
Help Bob determine if he can obtain some other rectangle, or if he is just wasting his time.
输入格式
Each test consists of multiple test cases. The first line contains a single integer t ( 1≤t≤104 ) — the number of test cases. This is followed by the description of the test cases.
The single line of each test case contains two integers a and b ( 1≤a,b≤109 ) — the size of Bob's rectangle.
输出格式
For each test case, output "Yes" if Bob can obtain another rectangle from the a×b rectangle. Otherwise, output "No".
You can output the answer in any case (upper or lower). For example, the strings "yEs", "yes", "Yes", and "YES" will be recognized as positive answers.
输入输出样例
输入#1
7 1 1 2 1 2 6 3 2 2 2 2 4 6 3
输出#1
No No Yes Yes Yes Yes No
说明/提示
In the first test case, the 1×1 rectangle cannot be cut into two rectangles, so another rectangle cannot be obtained from it.
In the fourth test case, the 3×2 rectangle can be cut into two 3×1 rectangles, and from these, the 1×6 rectangle can be formed.
In the fifth test case, the 2×2 rectangle can be cut into two 1×2 rectangles, and from these, the 1×4 rectangle can be formed.