Farmer John's Favorite Operation
문제
It is another cold and boring day on Farmer John's farm. To pass the time, Farmer John has invented a fun leisure activity involving performing operations on an integer array.
Farmer John has an array of () non-negative integers and an integer (). Then, FJ will ask Bessie for an integer . In one operation, FJ can pick an index and subtract or add to . FJ's boredom value is the minimum number of operations he must perform so that is divisible by for all .
Among all possible , output FJ's minimum possible boredom value.
입력
The first line contains (), the number of independent test cases to solve.
The first line of each test case contains and .
The second line of each test case contains ().
It is guaranteed that the sum of over all test cases does not exceed .
출력
For each test case, output an integer on a new line containing FJ's minimum possible boredom value among all possible values of .
예제
예제 1
2 5 9 15 12 18 3 8 3 69 1 988244353 998244853
10 21