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

      

  • 相关阅读:
    DLL编写教程
    Ogre 配置
    LNK1123: 转换到 COFF 期间失败: 文件无效或损坏
    C++编译,链接错误总结
    git基本操作
    实习第33天
    HTTP状态码整理
    Window下的WebStorm快捷键操作
    告别div,可以代替div的几个标签
    实习20天
  • 原文地址:https://www.cnblogs.com/tonghao/p/5193903.html
Copyright © 2011-2022 走看看