Walking Boy

아직 제출이 없습니다시간 제한2초메모리 제한1024 MB

문제

One of the SWERC judges has a dog named Boy. Besides being a good competitive programmer, Boy loves fresh air, so she wants to be walked at least twice a day. Walking Boy requires 120120 consecutive minutes. Two walks cannot overlap, but one can start as soon as the previous one has finished.

Boy before and after getting ACCEPTED on this problem.

Today, the judge sent nn messages to the SWERC Discord server. The ii-th message was sent a_ia\_i minutes after midnight. You know that, when walking Boy, the judge does not send any messages, but he can send a message right before or right after a walk. Is it possible that the judge walked Boy at least twice today?

Note that a day has 14401440 minutes, and a walk is considered to happen today if it starts at a minute s0s ≥ 0 and ends right before a minute e1440e ≤ 1440. In that case, it must hold that es=120e - s = 120 and, for every i=1,2,,ni = 1, 2, \dots , n, either a_ia\_i ≤ s or a_iea\_i ≥ e.

입력

Each test contains multiple test cases. The first line contains an integer tt (1t1001 ≤ t ≤ 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 ≤ n ≤ 100) — the number of messages sent by the judge.

The second line of each test case contains nn integers a1_,a_2,,a_na1\_, a\_2, \dots , a\_n (0a_1<a_2<<a_n<14400 ≤ 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 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 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].