freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-325-stone-game-ii.md

56 lines
1.7 KiB
Markdown
Raw Normal View History

---
id: 5900f4b11000cf542c50ffc4
challengeType: 5
videoUrl: ''
localeTitle: 问题325石头游戏II
---
## Description
<section id="description">一场比赛是用两堆石头和两个球员进行的。在轮到她时,玩家从较大的堆中移除了许多石头。她移除的石头数量必须是较小桩中石头数量的正数倍。 <p>例如让有序对6,14描述一个配置在较小的桩中有6个石头在较大的桩中有14个石头那么第一个玩家可以从较大的桩中移除6或12个石头。 </p><p>从一堆中取出所有宝石的玩家赢得比赛。 </p><p>获胜配置是第一个玩家可以强制获胜的配置。例如1,52,63,12是获胜配置因为第一个玩家可以立即移除第二堆中的所有宝石。 </p><p>失败的配置是第二个玩家可以强制获胜的配置无论第一个玩家做什么。例如2,33,4正在失去配置任何合法移动都会为第二个玩家留下获胜配置。 </p><p>将SN定义为所有丢失配置xiyi的总和xi + yi0 &lt;xi &lt;yi≤N。我们可以验证S10= 211和S104= 230312207313。 </p><p>找到S1016mod 710。 </p></section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler325()</code>应该返回54672965。
testString: assert.strictEqual(euler325(), 54672965);
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler325() {
// Good luck!
return true;
}
euler325();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
/section>