Problem 005

Posted alice-thinker

tags:

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

欧拉计划----https://projecteuler.net/


 

最小倍数

2520是最小的能够被1到10整除的数。

最小的能够被1到20整除的正数是多少?

 

public class Problem5 {
    
    static long cal() {
        int [] a= {2,3,5,7,11,13,17,19};
        long s=0;
        out:
        while(true) {
            s++;
            for (int i = 0; i<=a.length-1; i++) {
                if(s%a[i]!=0) {
                    continue out;
                }
            }
            return s;
        }
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();
        System.out.println(cal());
        long end = System.currentTimeMillis();
        System.out.println("runtime:" + (end - start));
    }

}

 

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

L2-005 集合相似度(STL+暴力)

PTA乙级 (1049 数列的片段和 (20分))

二分。三分

005 Python代码运行助手

本人想学习破解技术但是看不懂反汇编代码!求助!!

java基础--代码块 005