Files
freeCodeCamp/curriculum/challenges/japanese/10-coding-interview-prep/project-euler/problem-317-firecracker.md
2022-01-23 00:08:20 +09:00

983 B

id, title, challengeType, forumTopicId, dashedName
id title challengeType forumTopicId dashedName
5900f4aa1000cf542c50ffbc 問題 317: 爆竹 5 301973 problem-317-firecracker

--description--

ある爆竹は地上 100 m の高さで爆発します。 爆発すると、無数の微小な破片に分かれてあらゆる方向に飛び散ります。いずれの破片も初速は 20 \frac{\text{m}}{\text{s}} です。

g=9.81 \frac{\text{m}}{\text{s}^2} の一様な重力場で、破片が空気抵抗を受けずに動くと仮定します。

破片が地面に到達する前に移動する領域の体積 (\text{m}^3) を求めなさい。 回答は、四捨五入して小数第 4 位まで示すこと。

--hints--

firecracker()1856532.8455 を返す必要があります。

assert.strictEqual(firecracker(), 1856532.8455);

--seed--

--seed-contents--

function firecracker() {

  return true;
}

firecracker();

--solutions--

// solution required