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;
    } 
    

      

  • 相关阅读:
    HTML5中的Range对象的研究
    浅谈移动端开发页面
    你所不了解的javascript操作DOM的细节知识点(一)
    理解Javascript的动态语言特性
    webview与JS的交互
    javascript客户端检测技术
    逐渐深入地理解Ajax
    html5获取地理位置信息API
    Javascript中的Form表单知识点总结
    go语言基础之不同目录
  • 原文地址:https://www.cnblogs.com/tonghao/p/5193903.html
Copyright © 2011-2022 走看看