56 lines
1.1 KiB
Markdown
56 lines
1.1 KiB
Markdown
![]() |
---
|
||
|
id: 5900f4941000cf542c50ffa7
|
||
|
challengeType: 5
|
||
|
title: 'Problem 296: Angular Bisector and Tangent'
|
||
|
videoUrl: ''
|
||
|
localeTitle: 'Problema 296: Bissetriz Angular e Tangente'
|
||
|
---
|
||
|
|
||
|
## Description
|
||
|
<section id="description"> Dado é um triângulo de lados inteiros ABC com BC ≤ AC ≤ AB.k é a bissetriz angular de ângulo ACB.m é a tangente em C ao círculo circunscrito de ABC.n é uma linha paralela a m até B. A intersecção de n ek é chamado E. <p> Quantos triângulos ABC com perímetro não superior a 100.000 existem de tal forma que BE possui comprimento integral? </p></section>
|
||
|
|
||
|
## Instructions
|
||
|
<section id="instructions">
|
||
|
</section>
|
||
|
|
||
|
## Tests
|
||
|
<section id='tests'>
|
||
|
|
||
|
```yml
|
||
|
tests:
|
||
|
- text: <code>euler296()</code> deve retornar 1137208419.
|
||
|
testString: 'assert.strictEqual(euler296(), 1137208419, "<code>euler296()</code> should return 1137208419.");'
|
||
|
|
||
|
```
|
||
|
|
||
|
</section>
|
||
|
|
||
|
## Challenge Seed
|
||
|
<section id='challengeSeed'>
|
||
|
|
||
|
<div id='js-seed'>
|
||
|
|
||
|
```js
|
||
|
function euler296() {
|
||
|
// Good luck!
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
euler296();
|
||
|
|
||
|
```
|
||
|
|
||
|
</div>
|
||
|
|
||
|
|
||
|
|
||
|
</section>
|
||
|
|
||
|
## Solution
|
||
|
<section id='solution'>
|
||
|
|
||
|
```js
|
||
|
// solution required
|
||
|
```
|
||
|
</section>
|