题库练习 Remove Smallest
← 上一题 下一题 →

A13739 | Remove Smallest

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

You are given the array $a$ consisting of $n$ positive (greater than zero) integers.

In one move, you can choose two indices $i$ and $j$ ( $i \ne j$ ) such that the absolute difference between $a_i$ and $a_j$ is no more than one ( $|a_i - a_j| \le 1$ ) and remove the smallest of these two elements. If two elements are equal, you can remove any of them (but exactly one).

Your task is to find if it is possible to obtain the array consisting of only one element using several (possibly, zero) such moves or not.

You have to answer $t$ independent test cases.

输入格式

The first line of the input contains one integer $t$ ( $1 \le t \le 1000$ ) — the number of test cases. Then $t$ test cases follow.

The first line of the test case contains one integer $n$ ( $1 \le n \le 50$ ) — the length of $a$ . The second line of the test case contains $n$ integers $a_1, a_2, \dots, a_n$ ( $1 \le a_i \le 100$ ), where $a_i$ is the $i$ -th element of $a$ .

输出格式

For each test case, print the answer: "YES" if it is possible to obtain the array consisting of only one element using several (possibly, zero) moves described in the problem statement, or "NO" otherwise.

输入输出样例

输入 #1
5
3
1 2 2
4
5 5 5 5
3
1 2 4
4
1 3 4 4
1
100
输出 #1
YES
YES
NO
NO
YES
C++ 编辑器
输入
输出