Problem C
Average Speed
You have bought a car in order to drive from Waterloo to a big city. The odometer on their car is broken, so you cannot measure distance. But the speedometer and cruise control both work, so the car can maintain a constant speed which can be adjusted from time to time in response to speed limits, traffic jams, and border queues. You have a stopwatch and note the elapsed time every time the speed changes. From time to time you wonder, “how far have I come?”. To solve this problem you must write a program to run on your laptop computer in the passenger seat.
Input
Standard input contains several lines of input (at most
Output
For each query in standard input, you should print a line
giving the time and the distance travelled rounded to exactly
two digits after the decimal point, in the format below. (You
may assume that the distance travelled is at least
Sample Input 1 | Sample Output 1 |
---|---|
00:00:01 100 00:15:01 00:30:01 01:00:01 50 03:00:01 03:00:05 140 |
00:15:01 25.00 km 00:30:01 50.00 km 03:00:01 200.00 km |