Pool |3| ~~~~~~~~ In this question you are asked to calculate the time to fill a pool of rectangular prism structure . The pool is filled and emptied by faucets. There are three faucets to fill the pool and two faucets to empty the pool. The faucets that are used to empty the pool can be placed on varying depths (i.e. they are not necessarily placed on the bottom of the pool) and they are guaranteed to be on different depths. |image1| Inputs will be given as integers in the following order: - The capacity of the first faucet (in m^3/min), filling - The capacity of the second faucet (in m^3/min), filling - The capacity of the third faucet (in m^3/min), filling - The capacity of the fourth faucet (in m^3/min), emptying - The capacity of the fifth faucet (in m^3/min), emptying - The depth of the fourth faucet (in meters) - The depth of the fifth faucet (in meters) - The length of the pool (in meters) - The width of the pool (in meters) - The depth of the pool (in meters) Note that the fourth faucet is always placed deeper than the fifth faucet and hence, the fifth one never can be at the bottom of the pool. As an output you need to print how much time is required to fill the pool as a float (see the sample output for the output format). 1 digit after decimal is sufficient. .. container:: sampleio Sample I/O: .. |3| image:: ../../figures/difficulty_three.png :class: difficulty .. |image1| image:: ../../figures/ch4_pool.png :class: width300 .. code:: default Input: 2 2 2 1 1 20 10 1 1 20 Output: “Time to fill the pool is 4.5 mins” .. raw:: html .. raw:: html