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 aa of length nn .

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 aa left. On the plus side, the seller said that he could decrease some numbers in the array (no more than by kk for each number).

The seller can obtain array bb from array aa if the following conditions hold: b_{i}>0; 0<=a_{i}-b_{i}<=k for all 1<=i<=n1<=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 nn and kk (1<=n<=3105;1<=k<=106)(1<=n<=3·10^{5};1<=k<=10^{6}) . The second line contains nn integers aia_{i} (1<=ai<=106)(1<=a_{i}<=10^{6}) — array aa .

输出格式

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:

3691212153 6 9 12 12 15

In the second sample we can obtain the next array:

7214914777 21 49 14 77

首页