Canadian Computing Competition: 2017 Stage 1, Junior #4
Wendy has an LED clock radio, which is a 12-hour clock, displaying times from to . The hours do not have leading zeros but minutes may have leading zeros, such as or .
When looking at her LED clock radio, Wendy likes to spot arithmetic sequences in the digits. For example, the times and are some of her favourite times, since the digits form an arithmetic sequence.
A sequence of digits is an arithmetic sequence if each digit after the first digit is obtained by adding a constant common difference. For example, is an arithmetic sequence with a common difference of , and is an arithmetic sequence with a common difference of .
Suppose that we start looking at the clock at noon (that is, when it reads ) and watch the clock for some number of minutes. How many instances are there such that the time displayed on the clock has the property that the digits form an arithmetic sequence?
Input Specification
The input contains one integer , which represents the duration that the clock is observed.
For 4 of the 15 available marks, .
Output Specification
Output the number of times that the clock displays a time where the digits form an arithmetic sequence starting from noon () and ending after minutes have passed, possibly including the ending time.
Sample Input 1
34
Sample Output 1
1
Explanation for Sample Output 1
Between and , there is only the time for which the digits form an arithmetic sequence.
Sample Input 2
180
Sample Output 2
11
Explanation for Sample Output 2
Between and , the following times form arithmetic sequences in their digits (with the difference shown):
- (difference 1),
- (difference 0),
- (difference 1),
- (difference 2),
- (difference 3),
- (difference 4),
- (difference -1),
- (difference 0),
- (difference 1),
- (difference 2),
- (difference 3).
Comments
How can I fix the TLE problem?
How many such arithmetic sequences appear in the 12-hour (720-minute) cycle?
If the input exceeds 720, do we really need to compute all the arithmetic sequences? Won't that take too long?
This is why you TLE.
can anybody check my latest submission
Test cases like
900
,3600
and6969
failWhat would be the answer, mine is 42, 156 and 309 and DMOJ says mine is wrong┭┮﹏┭┮
D:
What a shame "6:66" isn't a thing.
Wow! 2017 was filled with Math questions! Interesting.
I keep getting tle at start of batch#3 help
D has a max value of 1 billion. Looping through all values is too slow
The perfect way to describe this question: observing a clock for up to 1901 years. Hmmm... Not bad ill just see how many times my favourite number comes on! Oh btw my favourite number are only patterns how sad
lol, imagine doing that
No j5?
J5 is the same question as S3 https://dmoj.ca/problem/ccc17s3