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

A14435. Integers Have Friends

编程题 普及/提高-

题目描述

British mathematician John Littlewood once said about Indian mathematician Srinivasa Ramanujan that "every positive integer was one of his personal friends."

It turns out that positive integers can also be friends with each other! You are given an array $a$ of distinct positive integers.

Define a subarray $a_i, a_{i+1}, \ldots, a_j$ to be a friend group if and only if there exists an integer $m \ge 2$ such that $a_i \bmod m = a_{i+1} \bmod m = \ldots = a_j \bmod m$ , where $x \bmod y$ denotes the remainder when $x$ is divided by $y$ .

Your friend Gregor wants to know the size of the largest friend group in $a$ .

输入格式

Each test contains multiple test cases. The first line contains the number of test cases $t$ ( $1 \le t \le 2\cdot 10^4$ ).

Each test case begins with a line containing the integer $n$ ( $1 \le n \le 2 \cdot 10^5$ ), the size of the array $a$ .

The next line contains $n$ positive integers $a_1, a_2, \ldots, a_n$ ( $1 \le a_i \le {10}^{18}$ ), representing the contents of the array $a$ . It is guaranteed that all the numbers in $a$ are distinct.

It is guaranteed that the sum of $n$ over all test cases is less than $2\cdot 10^5$ .

输出格式

Your output should consist of $t$ lines. Each line should consist of a single integer, the size of the largest friend group in $a$ .

输入输出样例

输入 #1
4
5
1 5 2 4 6
4
8 2 5 10
2
1000 2000
8
465 55 3 54 234 12 45 78
输出 #1
3
3
2
6

说明/提示

In the first test case, the array is $[1,5,2,4,6]$ . The largest friend group is $[2,4,6]$ , since all those numbers are congruent to $0$ modulo $2$ , so $m=2$ .

In the second test case, the array is $[8,2,5,10]$ . The largest friend group is $[8,2,5]$ , since all those numbers are congruent to $2$ modulo $3$ , so $m=3$ .

In the third case, the largest friend group is $[1000,2000]$ . There are clearly many possible values of $m$ that work.
上一题 去做题 下一题