freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-417-reciprocal-cycl...

1.3 KiB
Raw Blame History

id challengeType title videoUrl localeTitle
5900f50d1000cf542c51001f 5 Problem 417: Reciprocal cycles II

Description

单位分数在分子中包含1。给出分母2到10的单位分数的十进制表示

1/2 = 0.5 1/3 = 0.31/4 = 0.25 1/5 = 0.2 1/6 = 0.161/7 = 0.1428571/8 = 0.125 1/9 = 0.11/10 = 0.1

其中0.16表示0.166666 ...并具有1位循环周期。可以看出1/7具有6位循环周期。

分母没有其他素数因子而不是2和/或5的单位分数不被认为具有重复周期。我们将这些单位分数的重复周期的长度定义为0。

令Ln表示1 / n的循环周期的长度。给出ΣLn3≤n≤1000 000等于55535191115。

找ΣLn为3≤n≤100000 000

Instructions

Tests

tests:
  - text: ''
    testString: 'assert.strictEqual(euler417(), 446572970925740, "<code>euler417()</code> should return 446572970925740.");'

Challenge Seed

function euler417() {
  // Good luck!
  return true;
}

euler417();

Solution

// solution required