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.1 KiB
Raw Blame History

id, title, challengeType, videoUrl, dashedName
id title challengeType videoUrl dashedName
5900f49b1000cf542c50ffad 问题302强阿喀琉斯数 5 problem-302-strong-achilles-numbers

--description--

如果p2是n中每个素数p的n的因数则正整数n是有力的。

如果n可以表示为另一个正整数的幂则正整数n是理想幂。

如果n是强大的但不是完美的幂则正整数n是阿喀琉斯数。 例如864和1800是阿喀琉斯数字864 = 25·33和1800 = 23·32·52。

如果S和φS都是阿喀琉斯数我们将正整数S称为强阿喀琉斯数.1 例如864是强致命弱点数φ864= 288 = 25·32。 但是1800不是强阿喀琉斯数字因为1800= 480 = 25·31·51。

低于104的有7个强弱点和低于108的656。

1018以下有多少个强阿喀琉斯数字

1φ表示欧拉的拉伸函数。

--hints--

euler302()应该返回1170060。

assert.strictEqual(euler302(), 1170060);

--seed--

--seed-contents--

function euler302() {

  return true;
}

euler302();

--solutions--

// solution required