-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfarAway.java
31 lines (30 loc) · 910 Bytes
/
farAway.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// codeChef practice
import java.util.Scanner;
class farAway{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int t = sc.nextInt();
while(t --> 0){
int N = sc.nextInt();
int M = sc.nextInt();
int a[] = new int[N];
for(int i = 0; i < N ; i++){
int c = sc.nextInt();
if(c <= M){
a[i] = c;
}
}
long max = 0;
for(int i = 0; i < N; i++){
// int k = a[i] - 1;
// int a1 = Math.abs(k);
// int l = a[i] - M;
// int a2 = Math.abs(l);
// max = max + Math.max(a1, a2);
max = max + Math.max(Math.abs(a[i]-1), Math.abs(a[i]-M));
}
System.out.println(max);
}
sc.close();
}
}