3455.Vasya and Beautiful Arrays

Time Limit: 1s Memory Limit: 256MB

Vasya's got a birthday coming up and his mom decided to give him an array of positive integers a of length n.

Vasya thinks that an array's beauty is the greatest common divisor of all its elements. His mom, of course, wants to give him as beautiful an array as possible (with largest possible beauty). Unfortunately, the shop has only one array a left. On the plus side, the seller said that he could decrease some numbers in the array (no more than by k for each number).

The seller can obtain array b from array a if the following conditions hold: bi \gt 0; 0 \le ai-bi \le k for all 1 \le i \le n.

Help mom find the maximum possible beauty of the array she will give to Vasya (that seller can obtain).

Input Format(From the terminal/stdin)

The first line contains two integers n and k (1 \le n \le 3 \cdot 105;1 \le k \le 106). The second line contains n integers ai (1 \le ai \le 106) - array a.

Output Format(To the terminal/stdout)

In the single line print a single number - the maximum possible beauty of the resulting array.

Sample Input 1

Copy
6 1
3 6 10 12 13 16
 · \n
 · ·  ·  ·  ·  \n

Sample Output 1

Copy
3
 \n

Sample Input 2

Copy
5 3
8 21 52 15 77
 · \n
 ·  ·  ·  ·  \n

Sample Output 2

Copy
7
 \n

Hints

In the first sample we can obtain the array:

3 6 9 12 12 15

In the second sample we can obtain the next array:

7 21 49 14 77

Submit

请先 登录

© 2025 FAQs