Files
freeCodeCamp/curriculum/challenges/japanese/10-coding-interview-prep/project-euler/problem-268-counting-numbers-with-at-least-four-distinct-prime-factors-less-than-100.md
2022-01-23 00:08:20 +09:00

954 B

id, title, challengeType, forumTopicId, dashedName
id title challengeType forumTopicId dashedName
5900f4791000cf542c50ff8b 問題 268: 相異なる 100 未満の素因数を少なくとも 4 つ持つ数を数え上げる 5 301917 problem-268-counting-numbers-with-at-least-four-distinct-prime-factors-less-than-100

--description--

少なくとも 4 つの 100 未満の相異なる素数で割り切れる、1000 未満の正の整数が 23 個あることを確認できます。

少なくとも 4 つの 100 未満の相異なる素数で割り切れる、{10}^{16} 未満の正の整数はいくつありますか。

--hints--

fourDistinctPrimeFactors()785478606870985 を返す必要があります。

assert.strictEqual(fourDistinctPrimeFactors(), 785478606870985);

--seed--

--seed-contents--

function fourDistinctPrimeFactors() {

  return true;
}

fourDistinctPrimeFactors();

--solutions--

// solution required