987 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			987 B
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f5041000cf542c510016 | 5 | Problem 407: Idempotents | 问题407:幂等元素 | 
Description
a2≡amod 6的最大值为4.让我们将M(n)称为a <n的最大值,使得a2≡a(mod n)。所以M(6)= 4。
找ΣM(n)为1≤n≤107。
Instructions
Tests
tests:
  - text: <code>euler407()</code>应该返回39782849136421。
    testString: 'assert.strictEqual(euler407(), 39782849136421, "<code>euler407()</code> should return 39782849136421.");'
Challenge Seed
function euler407() {
  // Good luck!
  return true;
}
euler407();
Solution
// solution required