#P0105. Sakurako's Exam
Sakurako's Exam
Problem
Today, Sakurako has a math exam. The teacher gave the array, consisting of ones and twos. In an array, Sakurako must place either a '+' or a '-' in front of each element so that the sum of all elements in the array equals
Sakurako is not sure if it is possible to solve this problem, so determine whether there is a way to assign signs such that the sum of all elements in the array equals
Input
The first line contains a single integer — the number of test cases.
The only line of each test case contains two integers and — the number of '1's and the number of '2's in the array.
Output
For each test case, output "YES" if you can make the sum of the entire array equal to and "NO" otherwise.
Example : in
5
0 1
0 3
2 0
2 3
3 1
Example : out
NO
NO
YES
YES
NO
相关
在下列比赛中: