748 B
748 B
id, title, challengeType, forumTopicId, dashedName
id | title | challengeType | forumTopicId | dashedName |
---|---|---|---|---|
5900f4181000cf542c50ff2b | 問題 172: 数字の反復が少ない数を調べ上げる | 5 | 301807 | problem-172-investigating-numbers-with-few-repeated-digits |
--description--
n
に含まれるどの数字も 3 回以下しか出現しないような、18 桁の数 n
(先行ゼロなし) はいくつありますか。
--hints--
numbersWithRepeatedDigits()
は 227485267000992000
を返す必要があります。
assert.strictEqual(numbersWithRepeatedDigits(), 227485267000992000);
--seed--
--seed-contents--
function numbersWithRepeatedDigits() {
return true;
}
numbersWithRepeatedDigits();
--solutions--
// solution required