1.1 KiB
1.1 KiB
id, challengeType, videoUrl, title
id | challengeType | videoUrl | title |
---|---|---|---|
5900f4601000cf542c50ff73 | 5 | 问题243:恢复力 |
Description
我们将称一个无法取消弹性部分的分数。此外,我们将分母R(d)的弹性定义为具有弹性的适当分数的比率;例如,R(12)= 4/11。事实上,d = 12是具有弹性R(d)<4/10的最小分母。
找到最小分母d,具有弹性R(d)<15499/94744。
Instructions
Tests
tests:
- text: <code>euler243()</code>应该返回892371480。
testString: assert.strictEqual(euler243(), 892371480);
Challenge Seed
function euler243() {
// Good luck!
return true;
}
euler243();
Solution
// solution required
/section>