| 
 
 
 | Лимит времени 2000/4000/4000/4000 мс. Лимит памяти 65000/65000/65000/65000 Кб. Question by Ibrahim Mesecan.
 
 
   The train which leaves the first You have started working in Tirana central train 
station. The chief wants a program for adjusting railroad switches. 
In order to avoid accidents, they need to adjust railroad switches
properly. You have the arrival and stay times for the trains.
 Question:
Write a program that is going to get information for n
trains and it will show the train which leave the earliest.
 Input specification  In the first line, you will be given an integer: The 
number of trains(n) where 0 ≤ n ≤ 40000.
Then, in the following n lines, you will be given 4 integers
 
where 0 ≤ h ≤ 23,  0 ≤ m and s ≤ 59, 
and 0 ≤ k ≤ 10,000.arrival time of the train (h, m, s)The time in minutes (k) that the train stays in the station . Note:  Pay attention that a train might 
leave some days after.
 Output specification: Show id of the train which leave the earliest. 
If there are two trains to leave at the same
time, show the train with smaller id.
 
  | Sample Input I 
 
314 30 26 85
 14 20 06 115
 14 35 24 65
 
 | Sample Output I 
 
3 
 |  Explanation: 
 
Then the sorted list of trains will 3, 1 and 2.The first train stays 85 minutes and leaves at: 
15:55:26The second train leaves at: 16:15:06The third train leaves at: 15:40:24 
 Для отправки решений необходимо выполнить вход.
 
 
 |