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>
		
			
				
	
	
	
		
			1015 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			1015 B
		
	
	
	
	
	
	
	
id, challengeType, isHidden, title, forumTopicId
| id | challengeType | isHidden | title | forumTopicId | 
|---|---|---|---|---|
| 5900f4c21000cf542c50ffd4 | 5 | false | Problem 340: Crazy Function | 301999 | 
Description
Also, define S(a, b, c) = .
For example, if a = 50, b = 2000 and c = 40, then F(0) = 3240 and F(2000) = 2040. Also, S(50, 2000, 40) = 5204240.
Find the last 9 digits of S(217, 721, 127).
Instructions
Tests
tests:
  - text: <code>euler340()</code> should return 291504964.
    testString: assert.strictEqual(euler340(), 291504964);
Challenge Seed
function euler340() {
  // Good luck!
  return true;
}
euler340();
Solution
// solution required