結果

問題 No.652 E869120 and TimeZone
ユーザー dangodango
提出日時 2023-07-08 08:52:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 1,000 ms
コード長 434 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 54,044 KB
最終ジャッジ日時 2024-07-22 04:41:56
合計ジャッジ時間 2,903 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,132 KB
testcase_01 AC 39 ms
52,192 KB
testcase_02 AC 39 ms
53,188 KB
testcase_03 AC 39 ms
54,044 KB
testcase_04 AC 39 ms
53,664 KB
testcase_05 AC 39 ms
53,248 KB
testcase_06 AC 39 ms
53,260 KB
testcase_07 AC 39 ms
52,936 KB
testcase_08 AC 39 ms
52,996 KB
testcase_09 AC 41 ms
53,060 KB
testcase_10 AC 39 ms
52,136 KB
testcase_11 AC 39 ms
53,828 KB
testcase_12 AC 39 ms
52,140 KB
testcase_13 AC 39 ms
53,208 KB
testcase_14 AC 40 ms
52,868 KB
testcase_15 AC 40 ms
52,516 KB
testcase_16 AC 39 ms
52,372 KB
testcase_17 AC 38 ms
53,780 KB
testcase_18 AC 39 ms
53,184 KB
testcase_19 AC 38 ms
53,332 KB
testcase_20 AC 39 ms
54,008 KB
testcase_21 AC 40 ms
52,256 KB
testcase_22 AC 39 ms
52,728 KB
testcase_23 AC 39 ms
53,752 KB
testcase_24 AC 39 ms
53,128 KB
testcase_25 AC 39 ms
53,640 KB
testcase_26 AC 39 ms
52,192 KB
testcase_27 AC 39 ms
52,256 KB
testcase_28 AC 40 ms
53,024 KB
testcase_29 AC 39 ms
52,496 KB
testcase_30 AC 38 ms
52,860 KB
testcase_31 AC 38 ms
52,864 KB
testcase_32 AC 39 ms
52,700 KB
testcase_33 AC 38 ms
52,308 KB
testcase_34 AC 38 ms
52,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import isclose

def main():
    a, b, c = input().split()
    h = int(a)
    m = int(b)
    delta = float(c.replace("UTC", "")) - 9
    h += int(delta)
    h = h % 24
    m += round((delta - int(delta)) * 60)
    if not isclose(m, 0):
        m += 60
        h -= 1
    if not isclose(h, 0):
        h += 24
    h += m // 60
    m = m % 60
    h = h % 24
    print(f"{h:02d}:{m:02d}")

if __name__ == "__main__":
    main()
0