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;
    }
  • 相关阅读:
    vue 前端框架 (二) 表格增加搜索
    vue 前端框架
    数据结构-树的基本操作
    linux的串口驱动分析
    TTY驱动程序架构
    linux MTD系统解析(转)
    DM9000网卡的基本工作原理
    ok6410的LCD裸机范例
    ok6410的DMA裸机总结
    ok6410串口裸机总结
  • 原文地址:https://www.cnblogs.com/shinianhuanniyijuhaojiubujian/p/7112814.html
Copyright © 2011-2022 走看看