Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com> Co-authored-by: Beau Carnes <beaucarnes@gmail.com>
1.2 KiB
1.2 KiB
id, challengeType, isHidden, title, forumTopicId
id | challengeType | isHidden | title | forumTopicId |
---|---|---|---|---|
5900f5481000cf542c51005a | 5 | false | Problem 475: Music festival | 302152 |
Description
Let f(12n) be the number of ways to organize the trios amongst the 12n musicians. You are given f(12) = 576 and f(24) mod 1 000 000 007 = 509089824.
Find f(600) mod 1 000 000 007.
Instructions
Tests
tests:
- text: <code>euler475()</code> should return 75780067.
testString: assert.strictEqual(euler475(), 75780067);
Challenge Seed
function euler475() {
// Good luck!
return true;
}
euler475();
Solution
// solution required