* feat(tools): add seed/solution restore script * chore(curriculum): remove empty sections' markers * chore(curriculum): add seed + solution to Chinese * chore: remove old formatter * fix: update getChallenges parse translated challenges separately, without reference to the source * chore(curriculum): add dashedName to English * chore(curriculum): add dashedName to Chinese * refactor: remove unused challenge property 'name' * fix: relax dashedName requirement * fix: stray tag Remove stray `pre` tag from challenge file. Signed-off-by: nhcarrigan <nhcarrigan@gmail.com> Co-authored-by: nhcarrigan <nhcarrigan@gmail.com>
1016 B
1016 B
id, title, challengeType, videoUrl, dashedName
id | title | challengeType | videoUrl | dashedName |
---|---|---|---|---|
5900f5091000cf542c51001b | 问题408:通过网格的可允许路径 | 5 | problem-408-admissible-paths-through-a-grid |
--description--
如果x,y和x + y都是正的正方形,那么我们称格子点(x,y)是不允许的。例如,(9,16)是不允许的,而(0,4),(3,1)和(9,4)则不允许。
考虑从点(x1,y1)到点(x2,y2)的路径,仅使用北或东的单位步长。如果其中间点都不允许,我们可以称这样的路径是可以接受的。
令P(n)是从(0,0)到(n,n)的可允许路径的数量。可以证实P(5)= 252,P(16)= 596994440和P(1000)mod 1 000 000 007 = 341920854。
求P(10 000 000)mod 1 000 000 007。
--hints--
euler408()
应该返回299742733。
assert.strictEqual(euler408(), 299742733);
--seed--
--seed-contents--
function euler408() {
return true;
}
euler408();
--solutions--
// solution required