zoukankan      html  css  js  c++  java
  • Codeforces 622B The Time 【水题】

    B. The Time
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    You are given the current time in 24-hour format hh:mm. Find and print the time after a minutes.

    Note that you should find only the time after a minutes, see the examples to clarify the problem statement.

    You can read more about 24-hour format here https://en.wikipedia.org/wiki/24-hour_clock.

    Input

    The first line contains the current time in the format hh:mm (0 ≤ hh < 24, 0 ≤ mm < 60). The hours and the minutes are given with two digits (the hours or the minutes less than 10 are given with the leading zeroes).

    The second line contains integer a (0 ≤ a ≤ 104) — the number of the minutes passed.

    Output

    The only line should contain the time after a minutes in the format described in the input. Note that you should print exactly two digits for the hours and the minutes (add leading zeroes to the numbers if needed).

    See the examples to check the input/output format.

    Sample test(s)
    input
    23:59
    10
    output
    00:09
    input
    20:20
    121
    output
    22:21
    input
    10:10
    0
    output
    10:10
    题意:给你一个时间问你n分钟后的时间

    #include<stdio.h>
    #include<string.h>
    #include<string>
    #include<math.h>
    #include<algorithm>
    #define LL long long
    #define PI atan(1.0)*4
    #define DD doublea
    #define MAX 1010
    #define mod 10007
    using namespace std;
    int n,m;
    int main()
    {
        int j,i,sum,t;
        int x,y,z;
        while(scanf("%d:%d",&n,&m)!=EOF)
        {
        	scanf("%d",&t);
        	x=y=z=0;
        	x=t%60;
        	z=t/60;
        	m=x+m;
        	if(m>=60)
        	{
        		y=m/60;
        		m=m%60;
        	}
        	n=n+z+y;
    		if(n%24==0)
    		    n=0;
    		if(n%24!=0)
    		    n=n%24;
    		printf("%02d:%02d
    ",n,m);
        }
    	return 0;
    } 
    

      

  • 相关阅读:
    oracle日志总结
    UIScrollView,contentOffset,contentInsert的各自特点和区别?
    js动态增加表格
    判断某个对象是不是DOM对象
    IOS 中frame与bounds的区别
    删除重复项,只取其中一条数据
    NSBundle
    React
    HTML5 postMessage 和 onmessage API 详解
    SonarQube
  • 原文地址:https://www.cnblogs.com/tonghao/p/5193903.html
Copyright © 2011-2022 走看看