結果

問題 No.652 E869120 and TimeZone
ユーザー totori_nyaatotori_nyaa
提出日時 2019-07-17 22:48:00
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,060 bytes
コンパイル時間 1,482 ms
コンパイル使用メモリ 166,644 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-08-25 01:12:26
合計ジャッジ時間 2,739 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 1 ms
4,376 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 2 ms
4,380 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 1 ms
4,380 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 1 ms
4,380 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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[4]=='+'){
        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 {
        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;
    
}
0