Lightoj 1024 - Eid

Posted いいえ敗者

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Lightoj 1024 - Eid相关的知识,希望对你有一定的参考价值。

求n个数的最小公倍数。

import java.math.*;
import java.io.*;
import java.util.*;
import java.text.*;
public class Main{

    /**
     * @param args
     */
    public static BigInteger lcm(BigInteger a,BigInteger b){
        return a.divide(a.gcd(b)).multiply(b);//.divide(a.gcd(b));
    }
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Scanner cin=new Scanner(System.in);
        int T,n;
        T=cin.nextInt();
        for(int t=1;t<=T;t++){
            n=cin.nextInt();
            BigInteger x=new BigInteger("1");
            BigInteger ans=new BigInteger("1");
            for(int i=1;i<=n;i++){
                x=cin.nextBigInteger();
                ans=lcm(ans,x);
            }
            System.out.println("Case "+t+": "+ans);
            System.gc();
        }
    }

}

得用

System.gc();

手动释放内存...

以上是关于Lightoj 1024 - Eid的主要内容,如果未能解决你的问题,请参考以下文章

LightOj1024 - Eid (求n个数的最小公约数+高精度)

light oj 1024 - Eid 大整数乘法

1024. 视频拼接 dp

Leetcode.1024 视频拼接

TYPO3 v10 - 在 eID_include 中使用上下文 API 获取 feUser 对象

创蓝253---eID数据保护