CodeForces 387A George and Sleep

A. George and Sleep
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

George woke up and saw the current time s on the digital clock. Besides, George knows that he has slept for time t.

Help George! Write a program that will, given time s and t, determine the time p when George went to bed. Note that George could have gone to bed yesterday relatively to the current time (see the second test sample).

Input

The first line contains current time s as a string in the format "hh:mm". The second line contains time t in the format "hh:mm" — the duration of George's sleep. It is guaranteed that the input contains the correct time in the 24-hour format, that is, 00 ≤ hh ≤ 2300 ≤ mm ≤ 59.

Output

In the single line print time p — the time George went to bed in the format similar to the format of the time in the input.

Sample test(s)
input
05:50
05:44
output
00:06
input
00:00
01:00
output
23:00
input
00:01
00:00
output
00:01
Note

In the first sample George went to bed at "00:06". Note that you should print the time only in the format "00:06". That's why answers "0:06", "00:6" and others will be considered incorrect.

In the second sample, George went to bed yesterday.

In the third sample, George didn't do to bed at all.

思路:看懂题目就行了

AC代码如下:

#include <iostream>
#include <cstring>
using namespace std;

int main(){

    char x[10],y[10];
    cin>>x>>y;
    int tx,ty,sign=0;
    tx=((x[3]-'0')*10+x[4]-'0')-((y[3]-'0')*10+y[4]-'0');
    if(tx<0){
        tx+=60;
        sign=-1;
    }
    ty=((x[0]-'0')*10+x[1]-'0')-((y[0]-'0')*10+y[1]-'0')+sign;
    if(ty<0) ty+=24;
    if(ty<10) cout<<"0";
    cout<<ty<<":";
    if(tx<10)cout<<"0";
    cout<<tx<<endl;

    return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值