问题描述: 欧拉诞生于1707年4月15日,对于序列(1504170715041707 * n) mod 4503599627370517,如果一个元素小于前面发现的所有Eulercoin,则其称为Eulercoin。 例如,第一个元素是1504170715041707,为第一个Eulercoin, ...
分类:
编程语言 时间:
2020-06-06 18:32:58
阅读次数:
57
由于研究Libra等数字货币编程技术的需要,学习了一段时间的Rust编程,一不小心刷题上瘾。我把解决63道问题的过程记录了下来,写成了一本《用欧拉计划学 Rust 编程》PDF电子书,请随意下载。 链接:https://pan.baidu.com/s/1NRfTwAcUFH QS8jMwo6pqw ...
分类:
其他好文 时间:
2020-03-20 11:03:50
阅读次数:
58
Large sum Work out the first ten digits of the sum of the following one hundred 50 digit numbers. 大和 计算出以下一百个50位数的和的前十位数字。 解题思路 目前想到的就是用高精度加法模拟。 100个5 ...
分类:
其他好文 时间:
2020-02-18 20:40:24
阅读次数:
83
Largest product in a series The four adjacent digits in the 1000 digit number that have the greatest product are 9 × 9 × 8 × 9 = 5832. Find the thirte ...
分类:
其他好文 时间:
2020-02-17 20:16:02
阅读次数:
145
Special Pythagorean triplet A Pythagorean triplet is a set of three natural numbers, $a using namespace std; int main() { for (int i = 1; i <= 1000/3; ...
分类:
其他好文 时间:
2020-02-17 20:11:32
阅读次数:
107
Summation of primes The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17. Find the sum of all the primes below two million. 素数的和 所有小于10的素数的和是2 + 3 + 5 ...
分类:
其他好文 时间:
2020-02-17 20:02:02
阅读次数:
77
Largest product in a grid In the 20×20 grid below, four numbers along a diagonal line have been marked in red. 08 02 22 97 38 15 00 40 00 75 04 05 07 ...
分类:
其他好文 时间:
2020-02-17 19:50:33
阅读次数:
116
Largest palindrome product A palindromic number reads the same both ways. The largest palindrome made from the product of two 2 digit numbers is 9009 ...
分类:
其他好文 时间:
2020-02-17 18:15:39
阅读次数:
102
Largest prime factor The prime factors of 13195 are 5, 7, 13 and 29. What is the largest prime factor of the number 600851475143 ? 最大质因数 13195的所有质因数为5 ...
分类:
其他好文 时间:
2020-02-17 18:06:08
阅读次数:
105
由于研究Libra等数字货币编程技术的需要,学习了一段时间的Rust编程,一不小心刷题上瘾。 "刷完欧拉计划中的63道基础题,能学会Rust编程吗?" “欧拉计划”的网址: https://projecteuler.net 英文如果不过关,可以到中文翻译的网站: http://pe cn.githu ...
分类:
其他好文 时间:
2020-02-13 13:11:26
阅读次数:
93