freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-391-hopping-game.ch...

56 lines
1.7 KiB
Markdown
Raw Normal View History

---
id: 5900f4f31000cf542c510006
challengeType: 5
title: 'Problem 391: Hopping Game'
videoUrl: ''
localeTitle: 问题391跳跃游戏
---
## Description
<section id="description">当将数字从0写入k到二进制时令sk为1的数。例如以二进制形式写0到5我们有0,1,10,11,100,101。有7个1所以s5 = 7.序列S = {skk≥0}开始{0,1 2,4,5,7,9,12......}。 <p>一个游戏由两个玩家玩。在游戏开始之前选择数字n。计数器c从0开始。每转一圈玩家选择一个从1到n的数字然后用该数字增加c。结果值c必须是S的成员。如果没有更多有效的移动则玩家输掉。 </p><p>例如设n = 5.c从0开始。玩家1选择4所以c变为0 + 4 = 4.玩家2选择5所以c变为4 + 5 = 9.玩家1选择3所以c变为9 + 3 = 12.等等。请注意c必须始终属于S并且每个玩家最多可以将c增加n。 </p><p>设Mn是第一个玩家在第一个回合强制获胜时可以选择的最高数字如果没有这样的移动则Mn= 0。例如M2= 2M7= 1且M20= 4。 </p><p>给定ΣMn3 = 81501≤n≤20。 </p><p>找ΣMn3表示1≤n≤1000。 </p></section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler391()</code>应该返回61029882288。
testString: 'assert.strictEqual(euler391(), 61029882288, "<code>euler391()</code> should return 61029882288.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler391() {
// Good luck!
return true;
}
euler391();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>