結果

問題 No.652 E869120 and TimeZone
ユーザー GrayCoder
提出日時 2018-02-23 23:24:14
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 287 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-12-17 13:28:19
合計ジャッジ時間 2,366 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 15 WA * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    A, B, S = input().split()

    plus = float(S[3:]) - 9
    h = int(A) + plus
    m = int(B) + (plus % 1) * 60

    if m >= 60:
        m -= 60
        h += 1

    if h > 23:
        h -= 24
    elif h < 0:
        h += 24

    print(f'{int(h):0>2}:{int(m):0>2}')

main()
0