Files
freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-403-lattice-points-enclosed-by-parabola-and-line.chinese.md

56 lines
1.3 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
id: 5900f5001000cf542c510013
challengeType: 5
title: 'Problem 403: Lattice points enclosed by parabola and line'
videoUrl: ''
localeTitle: 问题403由抛物线和直线包围的格点
---
## Description
<section id="description">对于整数a和b我们将Dab定义为由抛物线y = x2包围的域并且线y = a·x + bDab= {xy| x2≤y≤a·x + b}。 <p> Lab定义为Dab中包含的晶格点数。例如L1,2= 8并且L2-1= 1。 </p><p>我们还将SN定义为所有对ab的Lab之和使得Dab的面积是有理数并且| a || b | ≤N。我们可以验证S5= 344和S100= 26709528。 </p><p>找到S1012。给你的答案mod 108。 </p></section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler403()</code>应该返回18224771。
testString: 'assert.strictEqual(euler403(), 18224771, "<code>euler403()</code> should return 18224771.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler403() {
// Good luck!
return true;
}
euler403();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>