* 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>
1.4 KiB
1.4 KiB
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,5),(2,6)和(3,12)是获胜配置,因为第一个玩家可以立即移除第二堆中的所有宝石。
失败的配置是第二个玩家可以强制获胜的配置,无论第一个玩家做什么。例如,(2,3)和(3,4)正在失去配置:任何合法移动都会为第二个玩家留下获胜配置。
将S(N)定义为所有丢失配置(xi,yi)的总和(xi + yi),0 <xi <yi≤N。我们可以验证S(10)= 211和S(104)= 230312207313。
找到S(1016)mod 710。
--hints--
euler325()
应该返回54672965。
assert.strictEqual(euler325(), 54672965);
--seed--
--seed-contents--
function euler325() {
return true;
}
euler325();
--solutions--
// solution required