500 B
500 B
id, title, challengeType, videoUrl
| id | title | challengeType | videoUrl |
|---|---|---|---|
| 5900f3d91000cf542c50feeb | 问题108:丢番图互惠I | 5 |
--description--
在下面的等式中,x,y和n是正整数。 1 / x + 1 / y = 1 / n对于n = 4,恰好有三种不同的解:1/5 + 1/20 = 1/4
1/6 + 1/12 = 1/4
1/8 + 1/8 = 1/4不同解的数量超过一千的n的最小值是多少?
--hints--
diophantineOne diophantineOne()应返回180180。
assert.strictEqual(diophantineOne(), 180180);