1.1 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.1 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f4c21000cf542c50ffd4 | 5 | Problem 340: Crazy Function | 问题340:疯狂的功能 | 
Description
另外,定义S(a,b,c)=。
例如,如果a = 50,b = 2000且c = 40,则F(0)= 3240并且F(2000)= 2040.此外,S(50,2000,40)= 5204240。
找到S(217,721,127)的最后9位数。
Instructions
Tests
tests:
  - text: <code>euler340()</code>应返回291504964。
    testString: 'assert.strictEqual(euler340(), 291504964, "<code>euler340()</code> should return 291504964.");'
Challenge Seed
function euler340() {
  // Good luck!
  return true;
}
euler340();
Solution
// solution required