atcoder#NOMURA2020A. Study Scheduling
Study Scheduling
Score : points
Problem Statement
In this problem, we use the -hour clock.
Takahashi gets up exactly at the time : and goes to bed exactly at the time : . (See Sample Inputs below for clarity.) He has decided to study for consecutive minutes while he is up. What is the length of the period in which he can start studying?
Constraints
- The time : comes before the time : .
- Takahashi is up for at least minutes.
- All values in input are integers (without leading zeros).
Input
Input is given from Standard Input in the following format:
Output
Print the length of the period in which he can start studying, as an integer.
10 0 15 0 30
270
Takahashi gets up at exactly ten in the morning and goes to bed at exactly three in the afternoon. It takes minutes to do the study, so he can start it in the period between ten o'clock and half-past two. The length of this period is minutes, so we should print .
10 0 12 0 120
0
Takahashi gets up at exactly ten in the morning and goes to bed at exactly noon. It takes minutes to do the study, so he has to start it at exactly ten o'clock. Thus, we should print .