Oliver Eyton-Williams 0bd52f8bd1
Feat: add new Markdown parser (#39800)
and change all the challenges to new `md` format.
2020-11-27 10:02:05 -08:00

1001 B

id, title, challengeType, forumTopicId
id title challengeType forumTopicId
5900f50e1000cf542c510020 Problem 416: A frog's trip 5 302085

--description--

A row of n squares contains a frog in the leftmost square. By successive jumps the frog goes to the rightmost square and then back to the leftmost square. On the outward trip he jumps one, two or three squares to the right, and on the homeward trip he jumps to the left in a similar manner. He cannot jump outside the squares. He repeats the round-trip travel m times.

Let F(m, n) be the number of the ways the frog can travel so that at most one square remains unvisited. For example, F(1, 3) = 4, F(1, 4) = 15, F(1, 5) = 46, F(2, 3) = 16 and F(2, 100) mod 109 = 429619151.

Find the last 9 digits of F(10, 1012).

--hints--

euler416() should return 898082747.

assert.strictEqual(euler416(), 898082747);

--seed--

--seed-contents--

function euler416() {

  return true;
}

euler416();

--solutions--

// solution required