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>
		
			
				
	
	
	
		
			1.0 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.0 KiB
		
	
	
	
	
	
	
	
id, challengeType, isHidden, title, forumTopicId
| id | challengeType | isHidden | title | forumTopicId | 
|---|---|---|---|---|
| 5900f4e11000cf542c50fff4 | 5 | false | Problem 373: Circumscribed Circles | 302035 | 
Description
Let S(n) be the sum of the radii of the circumscribed circles of all such triangles for which the radius does not exceed n.
S(100)=4950 and S(1200)=1653605.
Find S(107).
Instructions
Tests
tests:
  - text: <code>euler373()</code> should return 727227472448913.
    testString: assert.strictEqual(euler373(), 727227472448913);
Challenge Seed
function euler373() {
  // Good luck!
  return true;
}
euler373();
Solution
// solution required