链接:

https://vjudge.net/problem/CodeForces-916A

题意:

Jamie loves sleeping. One day, he decides that he needs to wake up at exactly hh: 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 x minutes until hh: 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 '7'. For example, 13: 07 and 17: 27 are lucky, while 00: 48 and 21: 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: mm.

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

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

思路:

开始以为按几下可以变到7...没想到是往前,还只能往前.

代码:

#include <bits/stdc++.h>
using namespace std; bool Solve(int h, int m)
{
while (h)
{
if (h%10 == 7)
return true;
h /= 10;
}
while (m)
{
if (m%10 == 7)
return true;
m /= 10;
}
return false;
} int main()
{
int x, h, m, h1, m1;
cin >> x >> h >> m;
h1 = h, m1 = m;
int cnt = 0, cnt1 = 0;
while (!Solve(h1, m1))
{
m1 -= x;
if (m1 < 0)
h1--, m1 = 60+m1;
if (h1 < 0)
h1 = 24+h1;
cnt1++;
}
cout << cnt1 << endl; return 0;
}

最新文章

  1. java的各种使用小知识点总结。
  2. 关于Oracle AUTONOMOUS TRANSACTION(自治事务)的介绍
  3. Joel Spolsky对计算机学生的七大建议
  4. bzoj1109
  5. WCF入门教程系列四
  6. java Object 类
  7. Android中使用开源框架android-image-indicator实现图片轮播部署
  8. 以Ajax的方式访问数据库
  9. T-SQL基础(5) - 表表达式
  10. Egret --视觉编程,显示对象,事件
  11. 聊一聊PV和并发、以及计算web服务器的数量的方法【转】
  12. mt6577驱动开发 笔记版
  13. iptables nat 技术转发
  14. SkyWalking Liunx 环境搭建&amp;NetCore接入
  15. 记一次 windows server 2012R2 上安装 MSSQL2005 及网站发布
  16. 原生js可视加载图片、延迟加载、懒加载
  17. zookeeper 相关
  18. [z]一分钟教你知道乐观锁和悲观锁的区别
  19. Scrum 冲刺博客
  20. Java基础常见英语词汇(共70个)

热门文章

  1. cocos2dx[3.2](5) 屏幕适配
  2. java课堂疑问解答与思考2
  3. Educational Codeforces Round 64 -C(二分)
  4. [转帖]oracle 00600 4194 4193 问题的处理
  5. MySQL5.6解压版服务无法启动—系统错误1067
  6. 剑指offer-顺时针打印矩阵-数组-python
  7. node.js 设置静态文件托管
  8. vue项目--vuex状态管理器
  9. python中的正则表达式的使用
  10. windows核心编程01_错误处理