結果

問題 No.652 E869120 and TimeZone
ユーザー tcltktcltk
提出日時 2021-11-20 04:04:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 1,000 ms
コード長 465 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 87,224 KB
最終ジャッジ日時 2024-06-11 12:35:01
合計ジャッジ時間 5,276 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
86,536 KB
testcase_01 AC 105 ms
86,268 KB
testcase_02 AC 107 ms
86,700 KB
testcase_03 AC 114 ms
86,736 KB
testcase_04 AC 110 ms
86,832 KB
testcase_05 AC 106 ms
86,820 KB
testcase_06 AC 114 ms
86,612 KB
testcase_07 AC 107 ms
86,756 KB
testcase_08 AC 113 ms
86,884 KB
testcase_09 AC 111 ms
86,412 KB
testcase_10 AC 112 ms
86,744 KB
testcase_11 AC 111 ms
86,592 KB
testcase_12 AC 110 ms
86,840 KB
testcase_13 AC 108 ms
86,468 KB
testcase_14 AC 111 ms
86,816 KB
testcase_15 AC 108 ms
86,836 KB
testcase_16 AC 113 ms
86,680 KB
testcase_17 AC 112 ms
86,552 KB
testcase_18 AC 113 ms
86,344 KB
testcase_19 AC 113 ms
86,624 KB
testcase_20 AC 110 ms
86,840 KB
testcase_21 AC 107 ms
86,832 KB
testcase_22 AC 114 ms
86,776 KB
testcase_23 AC 117 ms
86,524 KB
testcase_24 AC 107 ms
86,816 KB
testcase_25 AC 106 ms
86,844 KB
testcase_26 AC 107 ms
86,824 KB
testcase_27 AC 109 ms
87,224 KB
testcase_28 AC 107 ms
86,700 KB
testcase_29 AC 109 ms
86,404 KB
testcase_30 AC 112 ms
86,780 KB
testcase_31 AC 113 ms
86,700 KB
testcase_32 AC 107 ms
86,676 KB
testcase_33 AC 111 ms
86,396 KB
testcase_34 AC 113 ms
86,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq


def input():
    return sys.stdin.readline()[:-1]


# sys.setrecursionlimit(1000000)

# _INPUT = """01 00 UTC+8.4

# """
# sys.stdin = io.StringIO(_INPUT)

a, b, S = input().split()
m = int(a) * 60 + int(b)
dm = round((float(S[3:])-9) * 10) * 6
m1 = (m + dm) % (60 * 24)

print(f'{m1//60:02}:{m1%60:02}')
0