--- id: 5900f4f11000cf542c510002 challengeType: 5 videoUrl: '' title: 问题388:不同的线条 --- ## Description
考虑所有格点(a,b,c),其中0≤a,b,c≤N。

从原点O(0,0,0)开始,所有线都被绘制到其他格点。设D(N)是不同的这种线的数量。

您被给予D(1 000 000)= 831909254469114121。

找到D(1010)。将前9位数字后跟最后9位数字作为答案。

## Instructions
## Tests
```yml tests: - text: euler388()应该返回831907372805130000。 testString: assert.strictEqual(euler388(), 831907372805130000); ```
## Challenge Seed
```js function euler388() { // Good luck! return true; } euler388(); ```
## Solution
```js // solution required ``` /section>