Files
freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-317-firecracker.russian.md

56 lines
1.6 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
id: 5900f4aa1000cf542c50ffbc
challengeType: 5
title: 'Problem 317: Firecracker'
videoUrl: ''
localeTitle: 'Задача 317: Фейерверк'
---
## Description
<section id="description"> Фейерверк взрывается на высоте 100 м над уровнем земли. Он разбивается на большое количество очень мелких фрагментов, которые движутся во всех направлениях; все они имеют одинаковую начальную скорость 20 м / с. <p> Предположим, что фрагменты движутся без сопротивления воздуха в однородном гравитационном поле с g = 9,81 м / с2. </p><p> Найдите объем (в м3) области, через которую фрагменты перемещаются, прежде чем достигнуть земли. Дайте ваш ответ округленным до четырех знаков после запятой. </p></section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler317()</code> должен вернуть 1856532.8455.
testString: 'assert.strictEqual(euler317(), 1856532.8455, "<code>euler317()</code> should return 1856532.8455.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler317() {
// Good luck!
return true;
}
euler317();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>