zoukankan      html  css  js  c++  java
  • UVA 10339 Watching Watches

    It has been said that a watch that is stopped keeps better time than one that loses 1 second per day. The one that is stopped reads the correct time twice a day while the one that loses 1 second per day is correct only once every 43,200 days. This maxim applies to old fashioned 12-hour analog watches, whose hands move continuously (most digital watches would display nothing at all if stopped). Given two such analog watches, both synchronized to midnight, that keep time at a constant rate but run slow by k and m seconds per day respectively, what time will the watches show when next they have exactly the same time?
    Input
    Input consists of a number of lines, each with two distinct non-negative integers k and m between 0 and 256, indicating the number of seconds per day that each watch loses.
    Output
    For each line of input, print k, m, and the time displayed on each watch, rounded to the nearest minute. Valid times range from 01:00 to 12:59.
    Sample Input
    1 2

    0 7
    Sample Output
    1 2 12:00

    0 7 10:17

    需要的天数 day=(12*60*60)/abs(n-m)

    总共走过的时间  second=(24*60*60*1.0-n)*day;

    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <queue>
    #include <cmath>
    #include <vector>
    #include <set>
    #include <map>
    #include <algorithm>
    using namespace std;
    typedef long long ll;
    int n,m;
    int main()
    {
        while(scanf("%d%d",&n,&m)!=EOF)
        {
            int k=abs(n-m);
            if(k==0){
                printf("%d %d 12:00
    ",n,m);
                continue;
            }
            double day=(12*60*60*1.0)/k;
            ll showtime=(ll)(day*(24*60*60-n));
            int min=showtime/60;
            showtime%=60;
            if(showtime>=30)min++;
            int h=(min/60)%12;
            min%=60;
            if(h==0) h=12;
            printf("%d %d %02d:%02d
    ",n,m,h,min);
        }
        return 0;
    }
  • 相关阅读:
    DHCP配置实例
    upupw phpmyadmin写shell
    网络配置课学期总结
    c#写一个网站后台扫描器
    移位运算符
    JavaScript 事件
    JS自动爆炸案例
    生成树协议
    暴力操作节点
    为博客园添加统计访问量的工具
  • 原文地址:https://www.cnblogs.com/shinianhuanniyijuhaojiubujian/p/7112814.html
Copyright © 2011-2022 走看看