My issue
My code
/* package codechef; // don't place package name! */
import java.util.*;
import java.lang.*;
import java.io.*;
/* Name of the class has to be "Main" only if the class is public. */
class Codechef
{
public static void main (String[] args) throws java.lang.Exception
{
Scanner sc=new Scanner(System.in);
int t=sc.nextInt();
for(int j=0;j<t;j++){
int n=sc.nextInt();
int sum=0;
int arr[]=new int[n];
for(int i=0;i<n;i++){
arr[i]=sc.nextInt();
sum+=arr[i];
}
int ans[]=new int[n];
for(int i=0;i<n;i++){
ans[i]=sum-arr[i];
}
for(int i=0;i<n;i++){
System.out.print(ans[i]+" ");
}
}
}
}
Problem Link: ARRPROB Problem - CodeChef