2018-10-10 18:03:03 -04:00
|
|
|
|
---
|
|
|
|
|
id: 5900f3fa1000cf542c50ff0d
|
2021-10-03 12:24:27 -07:00
|
|
|
|
title: '问题 142:完全平方数合集'
|
2018-10-10 18:03:03 -04:00
|
|
|
|
challengeType: 5
|
2021-02-06 04:42:36 +00:00
|
|
|
|
forumTopicId: 301771
|
2021-01-13 03:31:00 +01:00
|
|
|
|
dashedName: problem-142-perfect-square-collection
|
2018-10-10 18:03:03 -04:00
|
|
|
|
---
|
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
# --description--
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2021-10-03 12:24:27 -07:00
|
|
|
|
请找出最小的 $x + y + z$,其中整数 $x > y > z > 0$ 需要满足 $x + y$、$x − y$、$x + z$、$x − z$、$y + z$、$y − z$ 均为完全平方数。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
# --hints--
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2021-10-03 12:24:27 -07:00
|
|
|
|
`perfectSquareCollection()` 应该返回 `1006193`。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
|
|
```js
|
2021-10-03 12:24:27 -07:00
|
|
|
|
assert.strictEqual(perfectSquareCollection(), 1006193);
|
2018-10-10 18:03:03 -04:00
|
|
|
|
```
|
|
|
|
|
|
2021-01-13 03:31:00 +01:00
|
|
|
|
# --seed--
|
|
|
|
|
|
|
|
|
|
## --seed-contents--
|
|
|
|
|
|
|
|
|
|
```js
|
2021-10-03 12:24:27 -07:00
|
|
|
|
function perfectSquareCollection() {
|
2021-01-13 03:31:00 +01:00
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-03 12:24:27 -07:00
|
|
|
|
perfectSquareCollection();
|
2021-01-13 03:31:00 +01:00
|
|
|
|
```
|
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
# --solutions--
|
2020-08-13 17:24:35 +02:00
|
|
|
|
|
2021-01-13 03:31:00 +01:00
|
|
|
|
```js
|
|
|
|
|
// solution required
|
|
|
|
|
```
|