freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-479-roots-on-the-ri...

56 lines
1.2 KiB
Markdown
Raw Normal View History

---
id: 5900f54b1000cf542c51005d
challengeType: 5
title: 'Problem 479: Roots on the Rise'
videoUrl: ''
localeTitle: 问题479崛起的根源
---
## Description
<section id="description">设akbk和ck表示表达式1 / x =k / x2k + x2-kx的三个解实数或复数<p>例如对于k = 5我们看到{a5b5c5}约为{5.727244-0.363622 + 2.057397i-0.363622-2.057397i}。 </p><p>令所有整数pk的Snak + bkpbk + ckpck + akp使得1≤pk≤n。 </p><p>有趣的是Sn总是一个整数。例如S4= 51160。 </p><p>求S106modulo 1 000 000 007。 </p></section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler479()</code>应该返回191541795。
testString: 'assert.strictEqual(euler479(), 191541795, "<code>euler479()</code> should return 191541795.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler479() {
// Good luck!
return true;
}
euler479();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>