java比赛的相关内容
学习了一下Java大数的基本操作
System.gc()的用处。
//package vj;
import java.util.*;
import java.math.BigInteger;
public class Main {
public static void main(String args[]) {
Scanner read=new Scanner(System.in);
int t,n;
t=read.nextInt();
for(int i=1;i<=t;i++) {
n=read.nextInt();
BigInteger a =new BigInteger("1");
BigInteger b =new BigInteger("1");
a=read.nextBigInteger();
n--;
while(n!=0) {
b=read.nextBigInteger();
a=a.divide(a.gcd(b)).multiply(b);
n--;
}
System.out.println("Case "+i+": "+a);//Case 2: 60
//System.out.println(a.toString());
System.gc();//这个很重要,否则会超内存,调用垃圾回收机
}
read.close();
}
}