Успешно выполняется, когда я даю Run, но в некоторых тестах не выполняется.
Пример ввода:
2
2 3
1 1
3 7
4 2 2
Пример вывода:
Yes
No
Код:
import java.util.Scanner;
class LEAC {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
Scanner r=new Scanner(System.in);
int T,N,C;
String s="";
while(sc.hasNextLine())
{
s=sc.nextLine();
T=Integer.parseInt(s);
if(T>=1 && T<=1000)
{
for(int j=0;j<T;j++)
{
s=r.nextLine();
//r.nextLine();
String S[]=s.split(" ");
N=Integer.parseInt(S[0]);
if(N>=1 && N<=100)
{
C=Integer.parseInt(S[1]);
if(C>=1 && C<=1000000000)
{
int A[]=new int[N];
s=r.nextLine();
S=s.split(" ");
for(int k=0;k<N;k++)
{
A[k]=Integer.parseInt(S[k]);
}
for(int i=0;i<N;i++)
{
C=C-A[i];
}
if(C>=0)
{
System.out.println("Yes");
}
else
{
System.out.println("No");
}
}
}
}
}
}
}
}
Он также выполняется в затмении.
Ошибка времени выполнения (NZEC) при отправке.