結果
| 問題 |
No.652 E869120 and TimeZone
|
| コンテスト | |
| ユーザー |
totori_nyaa
|
| 提出日時 | 2019-07-17 22:50:13 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 2,076 bytes |
| コンパイル時間 | 1,596 ms |
| コンパイル使用メモリ | 166,984 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-11 12:30:20 |
| 合計ジャッジ時間 | 2,598 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 5 |
| other | AC * 30 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
signed main(){
ios::sync_with_stdio(false);
cin.tie(0);
int a,b;
string s;
cin>>a>>b>>s;
int n=s.size();
int t=48;
if(s[3]=='+'){
if(n==5){
t+= (int)s[n-1] - '0';
a+=t-9;
a+=24;
a%=24;
}
else if(n==6){
t+= (int)s[4] - '0';
t*=10;
t += (int)s[5] - '0';
a+=t-9;
a+=24;
a%=24;
}
else if(n==7){
t=(int)s[4]-'0';
a+=t-9+24;
a%=24;
t= (int) s[n-1]-'0';
t*=6;
b+=t;
if(b>=60) a++;
a%=24;
b%=60;
}
else {
t+= (int)s[4] - '0';
t*=10;
t += (int)s[5] - '0';
a+=t-9+24;
a%=24;
t= (int) s[n-1]-'0';
t*=6;
b+=t;
if(b>=60) a++;
a%=24;
b%=60;
}
}
else {
t-=48*5;
if(n==5){
t+= (int)s[n-1] - '0';
a+=-t-9;
a+=24;
a%=24;
}
else if(n==6){
t+= (int)s[4] - '0';
t*=10;
t += (int)s[5] - '0';
a+=-t-9;
a+=24;
a%=24;
}
else if(n==7){
t=(int)s[4]-'0';
a+=-t-9+24;
a%=24;
t= (int) s[n-1]-'0';
t*=6;
b-=t;
if(b<0) a+=23,b+=60;
a%=24;
b%=60;
}
else {
t+= (int)s[4] - '0';
t*=10;
t += (int)s[5] - '0';
a+=-t-9+24;
a%=24;
t= (int) s[n-1]-'0';
t*=6;
b-=t;
if(b<0) a+=23,b+=60;
a%=24;
b%=60;
}
}
if(a<10){
cout<<0<<a<<":";
}
else cout<<a<<":";
if(b<10){
cout<<0<<b<<endl;
}
else cout<<b<<endl;
}
totori_nyaa