1.1 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.1 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f4e51000cf542c50fff8 | 5 | Problem 377: Sum of digits, experience 13 | 问题377:数字之和,经验13 | 
Description
设f(n)为所有正整数的和,它们的数字不为零,数字和等于n。
找到$ \ displaystyle \ sum_ {i = 1} ^ {17} f(13 ^ i)$。将最后9位数字作为答案。
Instructions
Tests
tests:
  - text: <code>euler377()</code>应该返回732385277。
    testString: 'assert.strictEqual(euler377(), 732385277, "<code>euler377()</code> should return 732385277.");'
Challenge Seed
function euler377() {
  // Good luck!
  return true;
}
euler377();
Solution
// solution required