1.2 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.2 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f5021000cf542c510014 | 5 | Problem 405: A rectangular tiling | 问题405:矩形平铺 | 
Description
以下动画演示了从0到5的n的倾斜T(n):
设f(n)是四个瓦片在T(n)中相交的点数。例如,f(1)= 0,f(4)= 82并且f(109)mod 177 = 126897180。
找到f(10k)为k = 1018,给出你的答案模数为177。
Instructions
Tests
tests:
  - text: <code>euler405()</code>应返回237696125。
    testString: 'assert.strictEqual(euler405(), 237696125, "<code>euler405()</code> should return 237696125.");'
Challenge Seed
function euler405() {
  // Good luck!
  return true;
}
euler405();
Solution
// solution required