码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 4510

时间:2015-03-16 22:41:47      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:

省一等,保研。

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>

using namespace std;

int H,M,S,h,m,s;

int main(){
    int T;
    bool flag1,flag2;
    scanf("%d",&T);
    while(T--){
        flag1=flag2=false;
        scanf("%d:%d:%d %d:%d:%d",&H,&M,&S,&h,&m,&s);
        if(S<s){
            flag1=true;
            S+=60;
        }
        S-=s;
        if(flag1)
        M--;
        if(M<m){
            flag2=true;
            M+=60;
        }
        M-=m;
        if(flag2)
        H--;
        H-=h;
        H%=12;
        H=(H+12)%12;
        printf("%02d:%02d:%02d\n",H,M,S);
    }
    return 0;
}

 

HDU 4510

标签:

原文地址:http://www.cnblogs.com/jie-dcai/p/4343016.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!