按照题号排序 1.Multiples of 3 and 5 题意:求 $1000$ 以内的,是 $3$ 或 $5$ 倍数的数的和 直接模拟 2.Even Fibonacci numbers 题意:求 $4\times 10 ^ 6$ 内的,是偶数的斐波那契数之和 直接模拟 3.Largest pri ...
分类:
其他好文 时间:
2020-11-24 12:11:58
阅读次数:
5
世界顶级选手的刷题之道 dreamoon,知名中国台湾籍ACM选手,此为他的codeforces曲线: 关于中间突降的那段,还有个小故事: 当时dreamoon已经是世界上的顶级选手,甚至前一场的div1他排名第3!(当时cf的分制和现在不同,所以现在看起来只是个红名) 由于他没有拿到过div2的第 ...
分类:
其他好文 时间:
2020-05-14 22:27:10
阅读次数:
133
由于研究Libra等数字货币编程技术的需要,学习了一段时间的Rust编程,一不小心刷题上瘾。 "刷完欧拉计划中的63道基础题,能学会Rust编程吗?" “欧拉计划”的网址: https://projecteuler.net 英文如果不过关,可以到中文翻译的网站: http://pe cn.githu ...
分类:
其他好文 时间:
2020-02-13 13:11:26
阅读次数:
93
我从问题#12 ProjectEuler作为编程练习,并比较我在C,Python,Erlang和Haskell中的实现(当然不是最优)实现。为了获得更高的执行时间,我搜索了第一个有1000个以上因子的三角形数字,而不是原始问题中所述的500个。结果如下: C:lorenzo@enzo:~/erlan... ...
分类:
编程语言 时间:
2019-12-12 01:06:26
阅读次数:
116
Problem 42 https://projecteuler.net/problem=42 The nth term of the sequence of triangle numbers is given by, tn = ½n(n+1); so the first ten triangle n ...
分类:
其他好文 时间:
2019-06-16 13:36:00
阅读次数:
92
Problem 34 https://projecteuler.net/problem=34 145 is a curious number, as 1! + 4! + 5! = 1 + 24 + 120 = 145. 145是一个神奇的数字,1! + 4! + 5! = 1 + 24 + 120 ...
分类:
其他好文 时间:
2019-06-16 13:21:02
阅读次数:
85
Problem 22 Using names.txt (https://projecteuler.net/problem=22)(right click and 'Save Link/Target As...'), a 46K text file containing over five-thous ...
分类:
其他好文 时间:
2019-06-02 17:41:36
阅读次数:
96
题目链接:https://projecteuler.net/problem=429 题目: A unitary divisor dd of a number nn is a divisor of nn that has the property gcd(d,n/d)=1 The unitary di ...
分类:
其他好文 时间:
2018-08-23 22:14:46
阅读次数:
293
ProjectEuler_做题记录 简单记录一下。 problem 441 The inverse summation of coprime couples 神仙题。考虑答案为: $$\begin{array}{c} S(n) & = & \sum_{i = 1} ^ n \sum_{p = 1} ...
分类:
其他好文 时间:
2018-08-20 15:36:10
阅读次数:
195
1.Project Euler https://projecteuler.net/ What is Project Euler? Project Euler is a series of challenging mathematical/computer programming problems t ...
分类:
Web程序 时间:
2018-07-15 16:09:37
阅读次数:
201