CF916A.Jamie and Alarm Snooze

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Jamie loves sleeping. One day, he decides that he needs to wake up at exactly hh:mmhh:mm . However, he hates waking up, so he wants to make waking up less painful by setting the alarm at a lucky time. He will then press the snooze button every xx minutes until hh:mmhh:mm is reached, and only then he will wake up. He wants to know what is the smallest number of times he needs to press the snooze button.

A time is considered lucky if it contains a digit ' 77 '. For example, 13:0713:07 and 17:2717:27 are lucky, while 00:4800:48 and 21:3421:34 are not lucky.

Note that it is not necessary that the time set for the alarm and the wake-up time are on the same day. It is guaranteed that there is a lucky time Jamie can set so that he can wake at hh:mmhh:mm .

Formally, find the smallest possible non-negative integer yy such that the time representation of the time xyx·y minutes before hh:mmhh:mm contains the digit ' 77 '.

Jamie uses 24-hours clock, so after 23:5923:59 comes 00:0000:00 .

输入格式

The first line contains a single integer xx ( 1<=x<=601<=x<=60 ).

The second line contains two two-digit integers, hhhh and mmmm ( 00<=hh<=23,00<=mm<=5900<=hh<=23,00<=mm<=59 ).

输出格式

Print the minimum number of times he needs to press the button.

输入输出样例

  • 输入#1

    3
    11 23
    

    输出#1

    2
    
  • 输入#2

    5
    01 07
    

    输出#2

    0
    

说明/提示

In the first sample, Jamie needs to wake up at 11:23. So, he can set his alarm at 11:17. He would press the snooze button when the alarm rings at 11:17 and at 11:20.

In the second sample, Jamie can set his alarm at exactly at 01:07 which is lucky.

首页