E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
【ProjectEuler】
Problem 4:Largest palindrome product
原题地址:http://
projecteuler
.net/problem=4LargestpalindromeproductProblem4Apalindromicnumberreadsthesamebothways.Thelargestpalindromemadefromtheproductoftwo2
cfeibiao
·
2013-08-01 23:00
python
projecteuler
Problem 3:Largest prime factor
原题地址:http://
projecteuler
.net/problem=3LargestprimefactorProblem3Theprimefactorsof13195are5,7,13and29.
cfeibiao
·
2013-08-01 23:00
python
projecteuler
Problem 2:Even Fibonacci numbers
原题地址:http://
projecteuler
.net/problem=2EvenFibonaccinumbersProblem2EachnewtermintheFibonaccisequenceisgeneratedbyaddingtheprevioustwoterms.Bystartingwith1and2
cfeibiao
·
2013-08-01 23:00
python
projecteuler
Problem 1:Multiples of 3 and 5
原题地址:http://
projecteuler
.net/problem=1Multiplesof3and5Problem1Ifwelistallthenaturalnumbersbelow10thataremultiplesof3or5
cfeibiao
·
2013-08-01 23:00
python
projecteuler
在线学习编程网站收集
www.codewars.com/ Codewarshttp://codeforces.com/ codeforceshttps://www.hackerrank.com/ HackerRankhttps://
projecteuler
.n
hengyunabc
·
2013-06-16 14:00
斐波纳契数列
这个题有点
projectEuler
的风格,求f(34)+f(32).... 斐波那契数列可求的方法很多吧,这个范围那么小直接循环就行了。
caopengcs
·
2013-05-23 10:00
【欧拉计划1】Multiples of 3 and 5
欢迎访问我的新博客:http://www.milkcu.com/blog/原文地址:http://www.milkcu.com/blog/archives/1367311260.html前言昨天发现了
ProjectEuler
milkcu
·
2013-05-01 00:00
【欧拉计划1】Multiples of 3 and 5
前言昨天发现了
ProjectEuler
,一个不错的Project,同时改善了数学、计算机、英语方面的思维和能力。每天做一点也是正确的选择,今天就从第一题开始耕耘吧。
xitong
·
2013-05-01 00:00
欧拉计划
projecteuler
Problem 20
n!meansn(n1)...321Forexample,10!=109...321=3628800,andthesumofthedigitsinthenumber10!is3+6+2+8+8+0+0=27.Findthesumofthedigitsinthenumber100!A=reduce(lambdaa,b:a*b,range(1,101)) sum=0 forninstr(A): sum
jkhere
·
2013-03-22 20:00
python解决project euler题目的乐趣
寒假期间学习了python,现在基本上就能上手使用它来解决
projecteuler
里面的题目了,用python真的是没得说的,一个字“赞”。
bibodeng
·
2013-03-21 18:21
linux
python
pe
python解决project euler题目的乐趣
寒假期间学习了python,现在基本上就能上手使用它来解决
projecteuler
里面的题目了,用python真的是没得说的,一个字“赞”。
bibodeng
·
2013-03-21 18:21
linux
PE
python
linux
欧拉计划(1-5)
这次分享一些我自己比较感兴趣的东西,给大家推荐一个网站http://
projecteuler
.net/problems这是一个解题网站,提供一系列数学题供用户解答,而且语言不限,用自己最熟悉的就好,题目解答并不难
xinruiios
·
2013-03-15 19:00
C语言
欧拉计划
Project Euler 54 Poker hands(模拟+hash)
超级传送门:http://
projecteuler
.net/problem=54 刚看到题目描述,就联想到天津Regional的A题麻将那题,可惜没能AC,遗憾了好久。
michaelalan
·
2013-01-25 19:00
Project Euler 51 Prime digit replacements(枚举)
超级传送门:http://
projecteuler
.net/problem=51 这题我是暴力枚举的,O3优化后2秒多。
michaelalan
·
2013-01-25 19:00
Project Euler 26 Reciprocal cycles(计算有理小数循环节长度)
超级传送门:http://
projecteuler
.net/problem=26算法的核心思想:在除法过程中如果某一状态的除数与被除数和前面某一状态的相等,则后续的除法计算陷入循环,循环节长度就是这两个状态的距离
michaelalan
·
2013-01-15 14:00
Project Euler 20 Factorial digit sum(大数乘法)
超级传送门:http://
projecteuler
.net/problem=20用了自己写的大数乘法模板,乘法模板利用了这儿介绍的加法模板,注意设定内部tmp和ans数组的大小。
michaelalan
·
2013-01-15 14:00
Project Euler 13 Large sum(大数加法)
超级传送门:http://
projecteuler
.net/problem=13自己写的大数加法模板,用的时候注意设定tmp数组适当的长度,避免溢出或浪费空间。
michaelalan
·
2013-01-15 14:00
Project Euler
目录]
ProjectEuler
b]MoreAbout展开]
ProjectEuler
b]MoreAbout展开编辑本段]
ProjectEuler
b]诞生
ProjectEuler
由ColinHughes(也被人称为
gaorongchao1990626
·
2012-12-07 11:00
pypy的速度
无聊作PE http://
projecteuler
.net/problem=10 ,求2百万以下数的所有数的总和python随便写了一个big=2000000 importtime plst=[2,3,5,7,11,13
largetalk
·
2012-12-07 11:00
把一千以内的数字转为英文的程序
发现一个网站,
Projecteuler
.net,上面可以做题。 其中第17道题是关于把1至一千的的数字转成英文单词的。写了一个程序可以完成这个功能,应该容易扩展为任意大的数字。
xuhx
·
2012-11-01 22:00
kaggle competition 之 Titanic: Machine Learning from Disaster
而kaggle上的题目都是偏向数据挖掘类的,这相比ACM或者
projecteuler
这种纯算法的题要更有专业和更开放;一个题一般都会有一个
lgnlgn
·
2012-10-23 11:00
Project Euler problem 1
大概题意就是1~999中能被3或者5整除的数的和这题是非常基础的题目,直接for就行了不过的话,
projectEuler
上的题目一般都会有几种解答方法能被3或者5整除的数的和实际上等于能被3整除的和+能被
sdj222555
·
2012-09-25 15:00
ProjectEuler
201,多维背包
http://
projecteuler
.net/problem=201寻找100个数里面,50大小的子集的,所有和唯一的子集的,和。比普通背包多了一个子集数。
dingyaguang117
·
2012-08-19 12:00
python
ProjectEuler
,1-10题
先介绍一下,
ProjectEuler
,欧拉工程,是一个国外的练习数论的网站,总共300多道题目。
dingyaguang117
·
2012-08-19 12:00
快速排序
昨天做一个欧拉项目(
projecteuler
.net)的题目。需要用到快速排序。所以自己又研究了一下。下面作一个总结吧,内容源自严蔚敏的数据结构课本。
chj90220
·
2012-07-25 16:00
Python算法题
projecteuler
上面的题,试着用python写了下 问题1:列出所有是3或者是5的倍数且小于10的自然数,结果是3、5、6、9,这些值的结果之和为23,求小于1000且是3或者是5的倍数的值的和
lantian_123
·
2012-07-10 21:00
python
TDD个人实践体会
这两天正好有个朋友问我
Projecteuler
里面49题的解法,我动手编程时候发现自己的基础运算的库存在以前笔记本上,本子被老婆带走用了。
HackerVirus
·
2012-06-06 20:00
problem 22 字符串排序
http://
projecteuler
.net/problem=22 #include #include #include #include usingnamespacestd;
paul08colin
·
2012-04-12 23:00
problem 16 高精度乘法
http://
projecteuler
.net/problem=16#include #include #include usingnamespacestd; intmain() { intans[305
paul08colin
·
2012-04-12 23:00
problem 15 矩阵中a到b的路线数
http://
projecteuler
.net/problem=15简单dp,话说腾讯12年笔试题,出了题类似这题的#include usingnamespacestd; intmain() { longlongmap
paul08colin
·
2012-04-12 22:00
problem 12 f(n) = f(n-1) + n 数列中第一个
projecteuler
.net/problems#include #include #include usingnamespacestd; longlongSumFactor(longlongn) {
paul08colin
·
2012-04-12 22:00
problem 11 矩阵中连续四个数的最大积
http://
projecteuler
.net/problem=11暴力枚举#include #include usingnamespacestd; intmain() { intmatrix[410]
paul08colin
·
2012-04-12 22:00
Problem 10 2000000以下素数和
http://
projecteuler
.net/problem=10#include #include usingnamespacestd; constintMAXN=2000000; boolprime
paul08colin
·
2012-04-12 22:00
欧拉计划解题源码与报告持续发表开始了
最近因为参加一个软件大赛发现了这个数学与程序设计的题库:http://
projecteuler
.net。特别喜欢这个题库。由于题库不能提交源代码,只需要结果。所以以后就在这里保存我的源码和解题报告。
paul08colin
·
2012-04-12 21:00
Problem 19 of How many Sundays fell on the first of the month during the twentieth century
http://
projecteuler
.net/problem=19Youaregiventhefollowinginformation,butyoumayprefertodosomeresearchforyourself
comkingfly
·
2012-03-20 12:00
Problem 16 of 2的1000次方
http://
projecteuler
.net/problem=16importjava.math.BigInteger; publicclassSumDigitsTwo{ publicstaticvoidmain
comkingfly
·
2012-03-15 15:00
String
BI
Class
import
Problem 3 of largest prime factor
http://
projecteuler
.net/problem=3publicclassPrimeNum{ publicstaticvoidmain(Stringargs[]){ doublel=600851475143.0
comkingfly
·
2012-03-15 13:00
String
Class
欧拉项目【
ProjectEuler
】系列-第二题
欧拉项目【
ProjectEuler
】系列-第二题 ----人既无名Problem2:EachnewtermintheFibonaccisequenceisgeneratedbyaddingtheprevioustwoterms.Bystartingwith1and2
qq910894904
·
2012-02-14 20:00
c
360
each
n2
欧拉项目【
ProjectEuler
】系列-第一题
欧拉项目【
ProjectEuler
】系列-第一题----人既无名既然是第一次,当然要写个基本的介绍咯。
qq910894904
·
2012-02-13 20:00
编程
优化
list
汇编
测试
Numbers
【
projecteuler
.net】题目 48
新博客地址:http://gorthon.sinaapp.com/Problem48Theseries,11 +22 +33 +...+1010 =10405071317.Findthelasttendigitsoftheseries,11 +22 +33 +...+10001000.>>>str(sum([i**iforiinrange(1,1001)]))[-10:] '9110846700'
bh20077
·
2011-11-09 16:00
【
projecteuler
.net】题目 5
新博客地址:http://gorthon.sinaapp.com/Problem52520isthesmallestnumberthatcanbedividedbyeachofthenumbersfrom1to10withoutanyremainder.Whatisthesmallestpositivenumberthatis evenlydivisible byallofthenumbersfr
bh20077
·
2011-11-09 16:00
each
Numbers
【
ProjectEuler
】
ProjectEuler
_018
//Bystartingatthetopofthetrianglebelowandmovingtoadjacentnumbersontherowbelow,themaximumtotalfromtoptobottomis23. // //3 //74 //246 //8593 // //Thatis,3+7+4+9=23. // //Findthemaximumtotalfromtoptobott
sytzz
·
2011-11-05 23:00
String
Class
layer
Numbers
【
ProjectEuler
】
ProjectEuler
_067
//Bystartingatthetopofthetrianglebelowandmovingtoadjacentnumbersontherowbelow,themaximumtotalfromtoptobottomis23. // //3 //74 //246 //8593 // //Thatis,3+7+4+9=23. // //Findthemaximumtotalfromtoptobott
sytzz
·
2011-11-05 15:00
Algorithm
String
File
Class
layer
Numbers
【
ProjectEuler
】
ProjectEuler
_038
//Problem38 //28February2003 // //Takethenumber192andmultiplyitbyeachof1,2,and3: // //1921=192 //1922=384 //1923=576 //Byconcatenatingeachproductwegetthe1to9pandigital,192384576.Wewillcall192384576the
sytzz
·
2011-11-05 15:00
测试
null
Integer
each
【
ProjectEuler
】
ProjectEuler
_036
//Problem36 //31January2003 // //Thedecimalnumber,585=10010010012(binary),ispalindromicinbothbases. // //Findthesumofallnumbers,lessthanonemillion,whicharepalindromicinbase10andbase2. // //(Pleasenote
sytzz
·
2011-11-05 15:00
【
ProjectEuler
】
ProjectEuler
_037
//Problem37 //14February2003 // //Thenumber3797hasaninterestingproperty.Beingprimeitself,itispossibletocontinuouslyremovedigitsfromlefttoright,andremainprimeateachstage:3797,797,97,and7.Similarlywecan
sytzz
·
2011-11-05 15:00
null
Integer
each
【
ProjectEuler
】
ProjectEuler
_025
//Problem25 //30August2002 // //TheFibonaccisequenceisdefinedbytherecurrencerelation: // //Fn=Fn1+Fn2,whereF1=1andF2=1. //Hencethefirst12termswillbe: // //F1=1 //F2=1 //F3=2 //F4=3 //F5=5 //F6=8 //F7=
sytzz
·
2011-11-05 15:00
【
ProjectEuler
】
ProjectEuler
_022
//Problem22 //19July2002 // //Usingnames.txt(rightclickand'SaveLink/TargetAs...'),a46Ktextfilecontainingoverfive-thousandfirstnames,beginbysortingitintoalphabeticalorder.Thenworkingoutthealphabeticalv
sytzz
·
2011-11-05 15:00
String
Integer
iterator
cassandra
sorting
Numbers
【
ProjectEuler
】
ProjectEuler
_024
//Problem24 //16August2002 // //Apermutationisanorderedarrangementofobjects.Forexample,3124isonepossiblepermutationofthedigits1,2,3and4.Ifallofthepermutationsarelistednumericallyoralphabetically,wecal
sytzz
·
2011-11-05 15:00
【
ProjectEuler
】
ProjectEuler
_023
//Problem23 //02August2002 // //Aperfectnumberisanumberforwhichthesumofitsproperdivisorsisexactlyequaltothenumber.Forexample,thesumoftheproperdivisorsof28wouldbe1+2+4+7+14=28,whichmeansthat28isaperfec
sytzz
·
2011-11-05 15:00
Integer
less
iterator
Numbers
上一页
2
3
4
5
6
7
8
9
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他