Oliver Eyton-Williams ee1e8abd87
feat(curriculum): restore seed + solution to Chinese (#40683)
* 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>
2021-01-12 19:31:00 -07:00

1.4 KiB
Raw Blame History

id, title, challengeType, videoUrl, dashedName
id title challengeType videoUrl dashedName
5900f4b11000cf542c50ffc4 问题325石头游戏II 5 problem-325-stone-game-ii

--description--

一场比赛是用两堆石头和两个球员进行的。在轮到她时,玩家从较大的堆中移除了许多石头。她移除的石头数量必须是较小桩中石头数量的正数倍。

例如让有序对6,14描述一个配置在较小的桩中有6个石头在较大的桩中有14个石头那么第一个玩家可以从较大的桩中移除6或12个石头。

从一堆中取出所有宝石的玩家赢得比赛。

获胜配置是第一个玩家可以强制获胜的配置。例如1,52,63,12是获胜配置因为第一个玩家可以立即移除第二堆中的所有宝石。

失败的配置是第二个玩家可以强制获胜的配置无论第一个玩家做什么。例如2,33,4正在失去配置任何合法移动都会为第二个玩家留下获胜配置。

将SN定义为所有丢失配置xiyi的总和xi + yi0 <xi <yi≤N。我们可以验证S10= 211和S104= 230312207313。

找到S1016mod 710。

--hints--

euler325()应该返回54672965。

assert.strictEqual(euler325(), 54672965);

--seed--

--seed-contents--

function euler325() {

  return true;
}

euler325();

--solutions--

// solution required