1.2 KiB
1.2 KiB
id, challengeType, title, videoUrl, localeTitle
id | challengeType | title | videoUrl | localeTitle |
---|---|---|---|---|
5900f4ab1000cf542c50ffbe | 5 | Problem 319: Bounded Sequences | 问题319:有界序列 |
Description
令t(n)表示长度为n的此类序列的数量。 给出t(10)= 86195和t(20)= 5227991891。
找出t(1010)并给出答案模块109。
Instructions
Tests
tests:
- text: <code>euler319()</code>应该返回268457129。
testString: assert.strictEqual(euler319(), 268457129);
Challenge Seed
function euler319() {
// Good luck!
return true;
}
euler319();
Solution
// solution required
/section>