FCTRL2 in beginer section when i run its is succesfully exceeded al

/* 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
{
// your code goes here
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
for(int i=0;i<n;i++)
{int fact=1;

	    int no=sc.nextInt();
	    for(int j=no;j>=1;j--){
	        
	        
	       fact=fact*j;
	        
	       
	        
	        
	        
	        
	        
	        
	    }
	     System.out.println(fact);
	}
}

}

Look at given constraints, 1<=t<=100 Think of what can you do to store such a large number, Fact of 100 is 9.332622e+157 that much large.

The factorial of the values in the constraints, 1<=t<=100 soon exceeds even long datatype in java,and you are using int (int fact = 1). It has a pretty convenient solution in java using BigInteger datatype. You can read about it here

Here’s my solution for the same problem CodeChef: Practical coding for everyone