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

      

  • 相关阅读:
    Pycharm破解
    Web UI绕过登录的实现
    使用Docker安装Jenkins服务
    Appium 基于控件左滑操作
    Pytest执行用例报Hint: make sure your test modules/packages have valid Python names.
    Selenium文件上传
    获取Android手机日志
    Linux机器间ssh免密登录
    JMeter中使用Put请求方式请求接口
    python发送post请求上传文件,无法解析上传的文件
  • 原文地址:https://www.cnblogs.com/tonghao/p/5193903.html
Copyright © 2011-2022 走看看