hdu 5143 NPY and arithmetic progression(枚举)
文章目录
NPY is learning arithmetic progression in his math class. In mathematics, an arithmetic progression (AP) is a sequence of numbers such that the difference between the consecutive terms is constant.(from wikipedia)
He thinks it’s easy to understand,and he found a challenging problem from his talented math teacher:
You’re given four integers,
Attention: You must use every number exactly once.
Can you solve this problem?
Input
The first line contains a integer T — the number of test cases (1≤T≤1000001≤T≤100000).
The next T lines,each contains 4 integers a1,a2,a3,a4(0≤a1,a2,a3,a4≤109)a1,a2,a3,a4(0≤a1,a2,a3,a4≤109).
Output
For each test case,print “Yes”(without quotes) if the numbers can be divided properly,otherwise print “No”(without quotes).
Sample Input
3
1 2 2 1
1 0 0 0
3 0 0 0
Sample Output
Yes
No
Yes
|
|