DMOPC '15 Contest 4 P2 - The Big Clock

View as PDF

Submit solution


Points: 5 (partial)
Time limit: 1.0s
Memory limit: 64M

Author:
Problem type
Alert, Nunavut

After a particularly bad ice storm, the central clock from the little town of Alert, Nunavut has frozen, and the hands no longer move.

Since the clock stopped, the locals have been using a stopwatch to determine the current time by adding the stopwatch's current time N (in minutes) with that of the clock. However, adding is a job for computers, so until the clock thaws, they've asked you to help them determine the current time!

Input Specification

The first line of input will contain the space-separated integers H (0 \le H \le 24) and M (0 \le M \le 60). These integers represent the hour and minutes at which the clock stopped, respectively.
The second line of input will contain the integer N (1 \le N \le 10^9).

Output Specification

Output the current time in 24-hour format, with the hours and minutes separated by a space.

Sample Input 1

11 59
2

Sample Output 1

12 1

Sample Input 2

12 0
61

Sample Output 2

13 1

Sample Input 3

23 58
5

Sample Output 3

0 3

Comments


  • 0
    jaydenchu2003  commented on Dec. 29, 2019, 7:31 p.m. edit 2

    WARNING:

    The test cases used for this problem involve putting in the time not in the correct 24-hour format.

    Ex: It will test the time "24 12", or "24 45".


  • 8
    moladan123  commented on Jan. 12, 2016, 10:36 p.m.

    Methinks that 100 test cases is slightly excessive, but who knows?