720 B
720 B
id, title, challengeType, forumTopicId, dashedName
id | title | challengeType | forumTopicId | dashedName |
---|---|---|---|---|
5900f3fa1000cf542c50ff0d | 問題 142: 完全平方数コレクション | 5 | 301771 | problem-142-perfect-square-collection |
--description--
整数 x > y > z > 0
について、x + y
, x − y
, x + z
, x − z
, y + z
, y − z
がすべて完全平方数となるような最小の x + y + z
を求めなさい。
--hints--
perfectSquareCollection()
は 1006193
を返す必要があります。
assert.strictEqual(perfectSquareCollection(), 1006193);
--seed--
--seed-contents--
function perfectSquareCollection() {
return true;
}
perfectSquareCollection();
--solutions--
// solution required