欧拉工程第60题:Prime pair sets
五个数,任意两个数的任意链接后的数还是质数
满足这个条件的最小五个数的和是多少?
结果:26033
纯暴力破解:
package projecteuler51to60; import java.util.ArrayList;
import java.util.List;
import java.util.TreeSet; class level60{
void solve1(){
List<Integer> primes = new ArrayList<>();
int Max = 10000; boolean flag=true;
primes.add(3);
int nextPrime = 3;
while(primes.size()!=5){
// System.out.println(nextPrime); nextPrime = nextPrimes(nextPrime);
flag=true;
for(int i=0;i<primes.size();i++){
if(concatPrime(primes.get(i),nextPrime) ==false){
flag = false;
}
}
if(nextPrime>Max && flag==true){
primes.add(nextPrime);
// System.out.println(nextPrime);
}
if(nextPrime>Max){
System.out.println(primes.size());
int temp = primes.remove(primes.size()-1);
primes.add(temp);
}
}
int sum=0;
for(int i=0;i<primes.size();i++){
sum+=primes.get(i);
System.out.println(primes.get(i)+" ");
}
}
int nextPrimes(int a){
for(int i = a+1;;i++)
if(isPrime(i))
return i;
}
void solve0(){
int Max =10000;
boolean[] primeArray = new boolean[Max]; for(int i=1;i<Max;i++)
if(isPrime(i))
primeArray[i]= true;
else primeArray[i]=false;
for(int i=3;i<Max;i=i+2){
int a=i;
if(isPrime(a)){
for(int b=a+2;b<Max;b=b+2){
if(isPrime(b) &&concatPrime(a,b)){
for(int c=b+2;c<Max;c=c+2){
if(isPrime(c) && concatPrime(a,c) &&concatPrime(b,c)){
for(int d=c+2;d<Max;d=d+2){
if(isPrime(d)&&concatPrime(a,d) &&concatPrime(b,d) &&concatPrime(c,d)){
for(int e=d+2;e<Max;e=e+2){
if(isPrime(e) &&concatPrime(a,e) &&concatPrime(b,e) &&concatPrime(c,e)&&concatPrime(d,e)){
System.out.println(a+b+c+d+e);
System.out.println(a+" "+b+" "+c+" "+d+" "+e);
return;
}
}
}
}
}
}
}
}
}
}
}
boolean concatPrime(int a,int b){
String digit1=String.valueOf(b)+String.valueOf(a);
String digit2=String.valueOf(a)+String.valueOf(b);
if(isPrime(Integer.parseInt(digit1)) &&isPrime(Integer.parseInt(digit2)))
return true;
return false;
} boolean isPrime(int num){
if(num==2||num==3 ||num==5||num==7) return true;
if(num<2 || num%2==00) return false;
for(int i=3;i<=Math.sqrt(num);i++)
if(num%i==0)
return false;
return true;
} }
public class Problem60 { public static void main(String[] args){
long begin= System.currentTimeMillis();
new level60().solve0();
long end = System.currentTimeMillis();
long Time = end - begin;
System.out.println("Time:"+Time/1000+"s"+Time%1000+"ms");
} }
欧拉工程第60题:Prime pair sets的更多相关文章
- 欧拉工程第69题:Totient maximum
题目链接 欧拉函数φ(n)(有时也叫做phi函数)可以用来计算小于n 的数字中与n互质的数字的个数. 当n小于1,000,000时候,n/φ(n)最大值时候的n. 欧拉函数维基百科链接 这里的是p是n ...
- 欧拉工程第70题:Totient permutation
题目链接 和上面几题差不多的 Euler's Totient function, φ(n) [sometimes called the phi function]:小于等于n的数并且和n是互质的数的个 ...
- 欧拉工程第51题:Prime digit replacements
题目链接 题目: 通过置换*3的第一位得到的9个数中,有六个是质数:13,23,43,53,73和83. 通过用同样的数字置换56**3的第三位和第四位,这个五位数是第一个能够得到七个质数的数字,得到 ...
- 欧拉工程第54题:Poker hands
package projecteuler51to60; import java.awt.peer.SystemTrayPeer; import java.io.BufferedReader; impo ...
- 欧拉工程第67题:Maximum path sum II
By starting at the top of the triangle below and moving to adjacent numbers on the row below, the ma ...
- 欧拉工程第66题:Diophantine equation
题目链接 脑补知识:佩尔方差 上面说的貌似很明白,最小的i,对应最小的解 然而我理解成,一个循环的解了,然后就是搞不对,后来,仔细看+手工推导发现了问题.i从0开始变量,知道第一个满足等式的解就是最小 ...
- 欧拉工程第65题:Convergents of e
题目链接 现在做这个题目真是千万只草泥马在心中路过 这个与上面一题差不多 这个题目是求e的第100个分数表达式中分子的各位数之和 What is most surprising is that the ...
- 欧拉工程第74题:Digit factorial chains
题目链接:https://projecteuler.net/problem=74 数字145有一个著名的性质:其所有位上数字的阶乘和等于它本身. 1! + 4! + 5! = 1 + 24 + 120 ...
- 欧拉工程第56题:Powerful digit sum
题目链接 Java程序 package projecteuler51to60; import java.math.BigInteger; import java.util.Iterator; im ...
随机推荐
- 将json转为复杂url参数
//json转url参数 var parseParam = function(param, key) { var paramStr = ""; if (param instance ...
- WInform启动另一个项目传值
背景:从A项目中登陆后,跳转到B项目的某个页面(B不再登陆). A项目启动进程: public Form1() { InitializeComponent(); } #region 调用进程 [Dll ...
- c指针提高
今天看了两章C语言,于是乎编段程序复习下. 还是不清楚这些神奇的东西的到底要干嘛用... 敲完后,显得这段代码高大上 但是,想实现这个程序,需要这么写的复杂吗?==|| #include & ...
- Redis 三:存储类型之字符串
.赋值单个: [赋值多个:mset a b c ] .取值单个: get a [取值多个:mget a b c] .数字递增 incr a 在a的基础上+,那就是返回101 如果预先的值为0,那么返回 ...
- constructor(构造器)
当我们创建一个类的时候,如果不自定义构造器,则系统会自动创建一个默认的构造器,也是一个无参构造器用于初始化. 当我们在类的里面创建了自己的构造器,则系统将不会创建默认的构造器,由于需求条件不同,构造器 ...
- 微软职位内部推荐-Sr. Dev Lead
微软近期Open的职位: JD 如果你想试试这个职位,请跟我联系,我是微软的员工,可以做内部推荐.发你的中英文简历到我的邮箱:Nicholas.lu.mail(at)gmail.com
- VBS基础篇 - 队列
VBS中的队列需要使用System.Collections.Queue '建立队列 Dim Que : Set Que = CreateObject("System.Collections. ...
- SVN服务器搭建和使用
SVN服务器搭建和使用 Subversion是优秀的版本控制工具,其具体的的优点和详细介绍,这里就不再多说. 首先来下载和搭建SVN服务器. 现在Subversion已经迁移到apache网站上了,下 ...
- git Clone SSL certificate problem: self signed certificate
自己的git服务器遇到证书是自签的,git验证后会拒绝,此时,采用如下命令临时禁用就好 git -c http.sslVerify=false clone https://domain.com/pat ...
- 设置配置文件信息时的classpath
首先 classpath是指 WEB-INF文件夹下的classes目录 其中:lib和classes下文件访问优先级的问题: lib>classes classpath 和 classpa ...