結果

問題 No.652 E869120 and TimeZone
ユーザー LightBellsLightBells
提出日時 2018-03-18 17:09:09
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 826 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 53,304 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-27 14:36:54
合計ジャッジ時間 2,798 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cstdlib>
using namespace std;

int main(){
    int hour,minites;
    string utc;
    cin >> hour >> minites >> utc;
    utc = utc.substr(3,utc.length()-1);
    auto dot = utc.find(".");
    string sign = utc.substr(0,1);
    string utc_h = utc.substr(1,dot-1);
    string utc_m = ((dot!=-1)?(utc.substr(dot+1,utc.length()-1)):"0");
    
    int intsign = (sign=="+")?1:-1;
    
    int hour_diff = intsign*atoi(utc_h.c_str())-9;
    int minites_diff = intsign*atoi(utc_m.c_str())*6;
    
    hour += hour_diff;
    minites += minites_diff;
    
    if (hour_diff>0){
        if (minites>=60) hour++,minites%=60;
        hour%=24;
    }
    else{
        if (minites<0) hour--,minites+=60;
        if (hour<0) hour+=24;
    }
    printf("%02d:%02d",hour,minites);
    return 0;
}
0