There is a racetrack where
players complete laps. Each player
has their own maximum speed. In this racetrack, overtaking is
only possible near the finish line at every lap: when a player
approaches a slower player, she will stay behind him until at
the finish line. At the finish line, all players crossing the
line at the same time resume driving at their maximum speed (so
faster players overtake slower ones). Initially, all players
start at the finish line. Given the lap time and the number of
laps to complete for each player, calculate the times they
complete the race in.
Input
The first line contains an integer (), the number of players. The
following lines
contain the players’ lap time and number of laps to complete:
the -th line contains
two integers and
(, ), the lap
time and the number of laps to complete for player . The players are sorted in
decreasing order of speed, that is, .
Output
Output lines; the
’th line must contain
the time that player
completes the race.
Sample Input 1 |
Sample Output 1 |
2
4 8
7 6
|
36
42
|