結果

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

ソースコード

diff #

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

    plus = float(S[3:]) - 9
    h = int(A) + int(plus // 1)
    m = int(B) + int((plus % 1) * 60)
    if h > 23:
        h -= 24
    elif h < 0:
        h += 24
    print(f'{h:0>2}:{m:0>2}')

main()
0