CF354C.Vasya and Beautiful Arrays
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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: b_{i}>0; 0<=a_{i}-b_{i}<=k for all 1<=i<=n .
Help mom find the maximum possible beauty of the array she will give to Vasya (that seller can obtain).
输入格式
The first line contains two integers n and k (1<=n<=3⋅105;1<=k<=106) . The second line contains n integers ai (1<=ai<=106) — array a .
输出格式
In the single line print a single number — the maximum possible beauty of the resulting array.
输入输出样例
输入#1
6 1 3 6 10 12 13 16
输出#1
3
输入#2
5 3 8 21 52 15 77
输出#2
7
说明/提示
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