CF1374D.Zero Remainder Array

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You are given an array aa consisting of nn positive integers.

Initially, you have an integer x=0x = 0 . During one move, you can do one of the following two operations:

  1. Choose exactly one ii from 11 to nn and increase aia_i by xx ( ai:=ai+xa_i := a_i + x ), then increase xx by 11 ( x:=x+1x := x + 1 ).
  2. Just increase xx by 11 ( x:=x+1x := x + 1 ).

The first operation can be applied no more than once to each ii from 11 to nn .

Your task is to find the minimum number of moves required to obtain such an array that each its element is divisible by kk (the value kk is given).

You have to answer tt independent test cases.

输入格式

The first line of the input contains one integer tt ( 1t21041 \le t \le 2 \cdot 10^4 ) — the number of test cases. Then tt test cases follow.

The first line of the test case contains two integers nn and kk ( 1n2105;1k1091 \le n \le 2 \cdot 10^5; 1 \le k \le 10^9 ) — the length of aa and the required divisior. The second line of the test case contains nn integers a1,a2,,ana_1, a_2, \dots, a_n ( 1ai1091 \le a_i \le 10^9 ), where aia_i is the ii -th element of aa .

It is guaranteed that the sum of nn does not exceed 21052 \cdot 10^5 ( n2105\sum n \le 2 \cdot 10^5 ).

输出格式

For each test case, print the answer — the minimum number of moves required to obtain such an array that each its element is divisible by kk .

输入输出样例

  • 输入#1

    5
    4 3
    1 2 1 3
    10 6
    8 7 1 8 3 7 5 10 8 9
    5 10
    20 100 50 20 100500
    10 25
    24 24 24 24 24 24 24 24 24 24
    8 8
    1 2 3 4 5 6 7 8

    输出#1

    6
    18
    0
    227
    8

说明/提示

Consider the first test case of the example:

  1. x=0x=0 , a=[1,2,1,3]a = [1, 2, 1, 3] . Just increase xx ;
  2. x=1x=1 , a=[1,2,1,3]a = [1, 2, 1, 3] . Add xx to the second element and increase xx ;
  3. x=2x=2 , a=[1,3,1,3]a = [1, 3, 1, 3] . Add xx to the third element and increase xx ;
  4. x=3x=3 , a=[1,3,3,3]a = [1, 3, 3, 3] . Add xx to the fourth element and increase xx ;
  5. x=4x=4 , a=[1,3,3,6]a = [1, 3, 3, 6] . Just increase xx ;
  6. x=5x=5 , a=[1,3,3,6]a = [1, 3, 3, 6] . Add xx to the first element and increase xx ;
  7. x=6x=6 , a=[6,3,3,6]a = [6, 3, 3, 6] . We obtained the required array.

Note that you can't add xx to the same element more than once.

首页