GFSSOC '14 Winter J3 - Waiting

View as PDF

Submit solution


Points: 3 (partial)
Time limit: 2.0s
Memory limit: 16M

Authors:
Problem types

Griffy has arrived at Don Mills, but he's too early and there's no one at the school to help him with his coding! He decides to wait until school starts so he can get some pointers (see what we did there?). Given the time he arrives at and the time that school starts, determine how many seconds Griffy will need to wait.

Input Specification

All times will be given in the format HH:MM:SS (0 \le HH \le 23, 0 \le MM \le 59, 0 \le SS \le 59).

First line: Time Griffy arrives (time will be less than 12:00:00).

Second line: Time school starts (time will be less than or equal to 23:59:59).

Note: The time school starts will be strictly greater than the time Griffy arrives.

Output Specification

One line, the number of seconds Griffy will need to wait.

Sample Input

08:15:00
08:30:00

Sample Output

900

Comments


  • 0
    quantum  commented on Dec. 9, 2014, 2:31 a.m.

    The problem mentions 23:59:59, but leap seconds can cause the last number to go up to 61.


    • 5
      FatalEagle  commented on Dec. 9, 2014, 2:35 a.m.

      But since we explicitly state the constraint up to 23:59:59, we don't consider leap seconds.