CF1776A.Walking Boy
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Each test contains multiple test cases. The first line contains an integer t ( 1≤t≤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≤n≤100 ) — the number of messages sent by the judge.
The second line of each test case contains n integers a1,a2,…,an ( 0≤a1<a2<⋯<an<1440 ) — the times at which the messages have been sent (in minutes elapsed from midnight).
输入格式
For each test case, output one line containing YES if it is possible that Boy has been walked at least twice, and 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.
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].
输入输出样例
输入#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.
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].