标签:时间 algorithm int str double cst map 题目 scan
#include <algorithm> #include <iostream> #include <cstring> #include <cstdio> #include <vector> #include <cmath> #include <queue> #include <deque> #include <cmath> #include <map> using namespace std; typedef long long ll; const double inf=1e20; const int maxn=100+10; const int mod=1e9+7; int main(){ int t; scanf("%d",&t); while(t--){ int a,b,c; scanf("%d%d%d",&a,&b,&c); int x; scanf("%d",&x);a+=x; scanf("%d",&x);b+=x; scanf("%d",&x);c+=x; if(c>=60){b+=c/60;c%=60;} if(b>=60){a+=b/60;b%=60;} printf("%d %d %d\n",a,b,c); } return 0; }
标签:时间 algorithm int str double cst map 题目 scan
原文地址:https://www.cnblogs.com/wz-archer/p/12444082.html