CF1776A.Walking Boy

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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

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

The second line of each test case contains nn integers a1,a2,,ana_1, \, a_2, \, \dots, \, a_n ( 0a1<a2<<an<14400 \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 YES\texttt{YES} if it is possible that Boy has been walked at least twice, and NO\texttt{NO} otherwise.

输出格式

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

In the second test case, the times are the same as above, but 500500 and 10001000 are missing. The judge could have walked Boy, for instance, during the time intervals [440,560][440, 560] and [980,1100][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 10001000 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][739, 859] and [859,979][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 100100 (excluding 00). It is impossible that he has walked Boy even once.

In the second test case, the times are the same as above, but 500500 and 10001000 are missing. The judge could have walked Boy, for instance, during the time intervals [440,560][440, 560] and [980,1100][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 10001000 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][739, 859] and [859,979][859, 979].

首页