1.1 KiB
1.1 KiB
id, challengeType, videoUrl, title
id | challengeType | videoUrl | title |
---|---|---|---|
5900f4a61000cf542c50ffb8 | 5 | 问题313:滑行游戏 |
Description
令S(m,n)代表完成游戏的最小移动次数。 例如,可以验证S(5.4)= 25。
正好有5482个网格,其中S(m,n)= p2,其中p <100是质数。
S(m,n)= p2有多少个网格,其中p <106是素数?
Instructions
Tests
tests:
- text: <code>euler313()</code>应该返回2057774861813004。
testString: assert.strictEqual(euler313(), 2057774861813004);
Challenge Seed
function euler313() {
// Good luck!
return true;
}
euler313();
Solution
// solution required
/section>