测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A15598. Walking Boy

编程题 普及/提高-

题目描述

Each test contains multiple test cases. The first line contains an integer $t$ ( $1 \le t \le 100$ ) — the number of test cases. The descriptions of the $t$ test cases follow.

The first line of each test case contains an integer $n$ ( $1 \le n \le 100$ ) — the number of messages sent by the judge.

The second line of each test case contains $n$ integers $a_1, \, a_2, \, \dots, \, a_n$ ( $0 \le a_1 < a_2 < \cdots < a_n < 1440$ ) — the times at which the messages have been sent (in minutes elapsed from midnight).

输入格式

For each test case, output one line containing $\texttt{YES}$ if it is possible that Boy has been walked at least twice, and $\texttt{NO}$ otherwise.

输出格式

In the **first test case**, the judge has sent a message at each time multiple of $100$ (excluding $0$). It is impossible that he has walked Boy even once.

In the **second test case**, the times are the same as above, but $500$ and $1000$ are missing. The judge could have walked Boy, for instance, during the time intervals $[440, 560]$ and $[980, 1100]$. The situation is illustrated in the picture below, where the walks are represented by green intervals.

![](/uploads/acgo/image/cfce0fbac3efdf50_35b1dae8c31f.jpeg)

In the **third test case**, the times are the same as in the first test case, but $1000$ is missing. The judge could have walked Boy at most once.

In the **fourth test case**, Boy could have been walked during the time intervals $[739, 859]$ and $[859, 979]$.

![](/uploads/acgo/image/2a22deb0784ea01b_287edf59080e.jpeg)

输入输出样例

输入 #1
6
14
100 200 300 400 500 600 700 800 900 1000 1100 1200 1300 1400
12
100 200 300 400 600 700 800 900 1100 1200 1300 1400
13
100 200 300 400 500 600 700 800 900 1100 1200 1300 1400
13
101 189 272 356 463 563 659 739 979 1071 1170 1274 1358
1
42
5
0 1 2 3 4
输出 #1
NO
YES
NO
YES
YES
YES

说明/提示

In the **first test case**, the judge has sent a message at each time multiple of $100$ (excluding $0$). It is impossible that he has walked Boy even once.

In the **second test case**, the times are the same as above, but $500$ and $1000$ are missing. The judge could have walked Boy, for instance, during the time intervals $[440, 560]$ and $[980, 1100]$. The situation is illustrated in the picture below, where the walks are represented by green intervals.

![](/uploads/acgo/image/cc0653b704612aa4_35504946bda4.jpeg)

In the **third test case**, the times are the same as in the first test case, but $1000$ is missing. The judge could have walked Boy at most once.

In the **fourth test case**, Boy could have been walked during the time intervals $[739, 859]$ and $[859, 979]$.

![](/uploads/acgo/image/37c607d038c91675_bc652480e4cf.jpeg)
上一题 去做题 下一题