CodeForces 622B The Time
水题。
#include <stdio.h> #include <algorithm> #include <string.h> #include <queue> #include <stack> #include <map> #include <vector> using namespace std; int h,m,a; int main() { scanf("%d:%d",&h,&m); scanf("%d",&a); int mm=(h*60+m+a)%(24*60); printf("%02d:%02d\n",mm/60,mm%60); return 0; }