当前位置:   article > 正文

A. Array with Odd Sum_you are given an array aa consisting of nn integer

you are given an array aa consisting of nn integers. in one move, you can ch

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

You are given an array aa consisting of nn integers.

In one move, you can choose two indices 1≤i,j≤n1≤i,j≤n such that i≠ji≠j and set ai:=ajai:=aj. You can perform such moves any number of times (possibly, zero). You can choose different indices in different operations. The operation := is the operation of assignment (i.e. you choose ii and jj and replace aiai with ajaj).

Your task is to say if it is possible to obtain an array with an odd (not divisible by 22) sum of elements.

You have to answer tt independent test cases.

Input

The first line of the input contains one integer tt (1≤t≤20001≤t≤2000) — the number of test cases.

The next 2t2t lines describe test cases. The first line of the test case contains one integer nn (1≤n≤20001≤n≤2000) — the number of elements in aa. The second line of the test case contains nn integers a1,a2,…,ana1,a2,…,an (1≤ai≤20001≤ai≤2000), where aiai is the ii-th element of aa.

It is guaranteed that the sum of nn over all test cases does not exceed 20002000 (∑n≤2000∑n≤2000).

Output

For each test case, print the answer on it — "YES" (without quotes) if it is possible to obtain the array with an odd sum of elements, and "NO" otherwise.

Example

input

Copy

5
2
2 3
4
2 2 8 8
3
3 3 3
4
5 5 5 5
4
1 1 1 1

output

Copy

YES
NO
YES
NO
NO

解题说明:水题,判断数组中是否存在奇数即可,可以用奇数替换掉其中的偶数,这样能保证数组之和肯定为奇数,但要排除偶数个奇数的情况。

  1. #include<cstdio>
  2. #include<cstring>
  3. #include<algorithm>
  4. #include<iostream>
  5. using namespace std;
  6. int main()
  7. {
  8. int t;
  9. scanf("%d", &t);
  10. while (t--)
  11. {
  12. int n, c = 0;
  13. scanf("%d", &n);
  14. int a[2002];
  15. for (int i = 0; i<n; i++)
  16. {
  17. scanf("%d", &a[i]);
  18. if (a[i] % 2 != 0)
  19. {
  20. c++;
  21. }
  22. }
  23. if ((c == n && n % 2 == 0) || c == 0)
  24. {
  25. printf("NO\n");
  26. }
  27. else
  28. {
  29. printf("YES\n");
  30. }
  31. }
  32. return 0;
  33. }

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/正经夜光杯/article/detail/745266
推荐阅读
相关标签
  

闽ICP备14008679号