题目链接: https://projecteuler.net/problem=435 题意: The Fibonacci numbers $ {f_n, n ≥ 0}$ are defined recursively as $f_n = f_{n 1} + f_{n 2}$ with base ca ...
分类:
其他好文 时间:
2018-05-18 23:28:26
阅读次数:
202
project euler 169 题目链接:https://projecteuler.net/problem=169 参考题解:http://tieba.baidu.com/p/2738022069 c++ include using namespace std; define fi first ...
分类:
其他好文 时间:
2018-03-24 11:35:36
阅读次数:
189
题目链接: https://projecteuler.net/problem=501 题意: $f(n)$ be the count of numbers not exceeding $n$ with exactly eight divisors. 就是找少于等于 $n$中只有8个因子的个数。 Yo ...
分类:
其他好文 时间:
2018-02-18 21:30:40
阅读次数:
274
欧拉计划 https://projecteuler.net/ 最小倍数 2520是最小的能够被1到10整除的数。 最小的能够被1到20整除的正数是多少? ...
分类:
其他好文 时间:
2018-02-06 13:01:08
阅读次数:
164
欧拉计划 https://projecteuler.net/ 最大回文乘积 回文数就是从前往后和从后往前读都一样的数。由两个2位数相乘得到的最大回文乘积是 9009 = 91 × 99。 找出由两个3位数相乘得到的最大回文乘积。 ...
分类:
其他好文 时间:
2018-02-06 12:54:26
阅读次数:
114
题目链接: https://projecteuler.net/problem=429 题目: A unitary divisor $d$ of a number $n$ is a divisor of $n$ that has the property $gcd(d, n/d) = 1$. The ...
分类:
其他好文 时间:
2018-01-14 11:01:48
阅读次数:
141
2.1 B 君的四分之一 (viertel)【题目背景】因为晚上 B 君不在,B 君决定出?个昨天讲过的题?。【题目描述】回忆 ProjectEuler 258 的做法,我们对其通项做出如下修改。fn = 1(0 ≤ n < k) fn = ∑ 1≤i≤k fn?i (n ≥ k) 为了让?家写起来 ...
分类:
其他好文 时间:
2018-01-02 23:18:44
阅读次数:
127
In the 2020 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 78 52 12 50 77 91 08 49 49 ...
分类:
其他好文 时间:
2017-08-02 13:54:24
阅读次数:
171
python の 玩: 1.http://projecteuler.net/ 2. http://www.pythonchallenge.com/ 3.http://www.topcoder.com/(暂时没打开或是太慢) ...
分类:
其他好文 时间:
2017-07-12 15:16:20
阅读次数:
133
Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first 10 terms will be: 1, 2, 3, ...
分类:
其他好文 时间:
2017-05-13 18:10:00
阅读次数:
187