You are given an array Arr containing N numbers and an integer K. You can implement the following operations on this array:
You cannot perform more than one operation per element of the array.
Write a program to determine whether it is possible to make the sum of all the elements in the array Arr equal to K.
Input format
Output format
For each test case, print YES or NO depending on the result.
Constraints
1≤T≤50
1≤N≤100
1≤K≤10000
0≤Arri≤100
For testcase 2 if we change the given array {1,2,3,4} to {-1,4,6,-4}
By applying transformation 1 to element 1 and 4 making them 1->-1 and 4->-4
Transformation 2 to element 2 and 3 making them 2->2+2 and 3->3+3
then the sum of all the elements will be 5.