QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#136645 | #245. Time Zone | nameless_story# | 100 ✓ | 143ms | 3768kb | C++20 | 688b | 2023-08-09 09:39:49 | 2023-08-09 09:39:53 |
Judging History
answer
#include "bits/stdc++.h"
using namespace std;
typedef long long ll;
#define fi first
#define se second
#define all(x) (x).begin(),(x).end()
#define pb push_back
int main()
{
// ios::sync_with_stdio(0);cin.tie(0);
int T;
scanf("%d",&T);
while(T--)
{
int x,y;double f;
scanf("%d%d",&x,&y);
scanf(" UTC%lf",&f);
// cerr<<x<<' '<<y<<' '<<f<<'\n';
double del=f-8;
int g=int(del);
x=(x+g+24)%24;
int h=int(round((del-g)*60));
y=(y+h);
if(y>=60)
y-=60,x++;
if(y<0)
y+=60,x--;
x=(x+24)%24;
printf("%02d:%02d\n",x,y);
}
}
详细
Test #1:
score: 100
Accepted
time: 143ms
memory: 3768kb
input:
406080 0 0 UTC+0 0 0 UTC-0 0 0 UTC+0.1 0 0 UTC-0.1 0 0 UTC+0.2 0 0 UTC-0.2 0 0 UTC+0.3 0 0 UTC-0.3 0 0 UTC+0.4 0 0 UTC-0.4 0 0 UTC+0.5 0 0 UTC-0.5 0 0 UTC+0.6 0 0 UTC-0.6 0 0 UTC+0.7 0 0 UTC-0.7 0 0 UTC+0.8 0 0 UTC-0.8 0 0 UTC+0.9 0 0 UTC-0.9 0 0 UTC+1 0 0 UTC-1 0 0 UTC+1.1 0 0 UTC-1.1 0 0 UTC+1.2 0...
output:
16:00 16:00 16:06 15:54 16:12 15:48 16:18 15:42 16:24 15:36 16:30 15:30 16:36 15:24 16:42 15:18 16:48 15:12 16:54 15:06 17:00 15:00 17:06 14:54 17:12 14:48 17:18 14:42 17:24 14:36 17:30 14:30 17:36 14:24 17:42 14:18 17:48 14:12 17:54 14:06 18:00 14:00 18:06 13:54 18:12 13:48 18:18 13:42 18:24 13:36 ...
result:
ok 406080 lines