{"raw_statement":[{"iden":"statement","content":"You are on planet Omicron Persei VIII and you find that the force due to gravity on you is Fg newtons, you also know that you have a mass of M. Using this information you want to know how long it will take for an object to fall (time T in seconds) a distance D starting from rest (Vi speed when the object is initially released). Using the following equations Fg = MG and D = ViT+½GT^2.\n\nThe first line will be the force due to gravity of you (Fg), the second line is your mass (M) and the third is the distance the object is going to fall (D).\n\nPrint the time that it will take for the object to fall d meters in the following format: \"It will take the object T seconds to fall D meters\". Your answer should also be rounded to the nearest tenth.\n\nIf you are getting confused by the Vi part here is a hint. When an object is at rest, meaning not moving, what is its speed.\n\n"},{"iden":"input","content":"The first line will be the force due to gravity of you (Fg), the second line is your mass (M) and the third is the distance the object is going to fall (D)."},{"iden":"output","content":"Print the time that it will take for the object to fall d meters in the following format: \"It will take the object T seconds to fall D meters\". Your answer should also be rounded to the nearest tenth."},{"iden":"note","content":"If you are getting confused by the Vi part here is a hint. When an object is at rest, meaning not moving, what is its speed."}],"translated_statement":null,"sample_group":[],"show_order":[],"formal_statement":"**Definitions**  \nLet $ F_g \\in \\mathbb{R}^+ $ be the gravitational force (in newtons).  \nLet $ M \\in \\mathbb{R}^+ $ be the mass (in kilograms).  \nLet $ D \\in \\mathbb{R}^+ $ be the fall distance (in meters).  \nLet $ G = \\frac{F_g}{M} $ be the gravitational acceleration (in m/s²).  \nLet $ V_i = 0 $ be the initial velocity (object starts from rest).  \nLet $ T \\in \\mathbb{R}^+ $ be the time (in seconds) to fall distance $ D $.\n\n**Constraints**  \n1. $ F_g > 0 $  \n2. $ M > 0 $  \n3. $ D > 0 $\n\n**Objective**  \nSolve for $ T $ in the equation:  \n$$ D = \\frac{1}{2} G T^2 $$  \nThen output:  \n\"It will take the object $ \\text{round}(T, 1) $ seconds to fall $ D $ meters\"","simple_statement":"You are given gravity force Fg, your mass M, and fall distance D.  \nFind time T for an object to fall D meters from rest.  \nUse: Fg = M * G, and D = 0.5 * G * T² (since Vi = 0 when at rest).  \nPrint: \"It will take the object T seconds to fall D meters\", rounded to nearest tenth.","has_page_source":false}