#Lutece0003. BiliBili, ACFun… And More!
BiliBili, ACFun… And More!
Migrated from Lutece 3 BiliBili, ACFun… And More!
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
Some of you may have already noticed, there is a team in our final contest whose name is UESTC_BiliBilii
, with user id as ACfun
. Actually, both of them are websites mainly for watching videos.
So in this problem we also deal with video-share websites. When watching videos online, two numbers are very important. One is the playing speed: the speed you play the video, say KB per second. The other is the downloading speed: the speed the computer downloads the video from the internet, say KB per second. Obviously, if , then you may have to pause for some time, since you cannot play something that hasn’t been downloaded!
The playing speed can also be described as the moving speed of the circle at the bottom of the videos, see the pictures below.
The circle will move along the blue bar, which is full now, indicating that downloading is already complete.
In this problem, we suppose that and will always be constant.
Kennethsnow has a special habit when watching videos, let me tell you. First of all, he will wait for some time to download part of the video, say seconds. Then, he starts to play the video.
If at a certain time, the video is paused, then kennethsnow will move the cursor(The circle in the picture) instantly to the leftmost position! That means, he will watch the video again, from the very beginning.
He will do this again and again, until the video comes to an end. Given , , , and the total size of the video, what is the time kennethsnow needs, to finish his watching?
Input
The first line of input contains a number , indicating the number of test cases. ().For each case, there will be four integers , , and , which is the playing speed, downloading speed, the time kennethsnow will wait before playing, and the total size of video, given in KB. (, ).
Output
For each case, output Case #i:
first. ( is the number of the test case, from to ). Then output the time kennethsnow needs to finish watching, in decimals, round to decimal places.
Samples
3
1 1 2 10
2 1 3 20
3 1 4 30
Case #1: 10.000
Case #2: 19.000
Case #3: 26.250
Resources
The 11th UESTC Programming Contest Final