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

878 B
Raw Blame History

id, title, challengeType, videoUrl, dashedName
id title challengeType videoUrl dashedName
5900f5481000cf542c51005a 问题475音乐节 5 problem-475-music-festival

--description--

12n音乐家参加音乐节。在第一天他们形成3n四重奏并整日练习。这是一场灾难。在一天结束时所有音乐家都决定再也不会同意与他们四重奏的任何成员一起玩。在第二天他们形成4n三人组每个音乐家都避开他以前的四重奏伙伴。

设f12n是在12n音乐家中组织三人组合的方式。给出f12= 576和f24mod 1 000 000 007 = 509089824。

求f600mod 1 000 000 007。

--hints--

euler475()应返回75780067。

assert.strictEqual(euler475(), 75780067);

--seed--

--seed-contents--

function euler475() {

  return true;
}

euler475();

--solutions--

// solution required