mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
34806a93cd
2500-2599
30 lines
526 B
C++
30 lines
526 B
C++
#include<stdio.h>
|
|
int abs(int a)
|
|
{
|
|
return a<0 ? -a:a;
|
|
}
|
|
void main()
|
|
{
|
|
int t;
|
|
scanf("%d",&t);
|
|
while(t--)
|
|
{
|
|
int n,k,i,j;
|
|
scanf("%d %d",&n,&k);
|
|
int x[2001]={0};
|
|
int inf[1000];
|
|
for(i=0;i<n;i++)
|
|
{
|
|
scanf("%d",&inf[i]);
|
|
for(j=0;j<i;j++)
|
|
x[abs(inf[j]-inf[i])]=1;
|
|
}
|
|
for(i=0;k;i++)
|
|
{
|
|
if(x[i]==1)
|
|
k--;
|
|
}
|
|
printf("%d\n",i-1);
|
|
}
|
|
}
|