Hard Question

View as PDF

Submit solution

Points: 5
Time limit: 1.0s
Memory limit: 16M

Problem type

A stone is dropped into a well. t seconds later, a splash is heard. The acceleration due to gravity is g metres per second per second, and the speed of sound is c metres per second. Calculate the depth of the well and the downwards velocity with which the stone hits the water.

Input Specification

Line 1: The value of g (0<g1000)
Line 2: The value of c (0<c1000)
Line 3: The value of t (0<t1000)

Output Specification

Line 1: The depth of the well in metres.
Line 2: The speed of the stone as it hits the water, in metres per second.

Sample Input

Copy
9.80
334
3.41

Sample Output

Copy
51.90
31.90

Your answers must have a relative or absolute error of less than 0.01.

Notes

The following equations may be useful:

Δd=vΔtv2v1=aΔtΔd=12(v1+v2)ΔtΔd=v1Δt+12a(Δt)2Δd=v2Δt12a(Δt)2v22v12=2aΔd

Here Δt,Δd,v,v1,v2,a represent time, displacement, velocity, initial velocity, final velocity, and acceleration, respectively.


Comments

There are no comments at the moment.