結果

問題 No.652 E869120 and TimeZone
ユーザー tcltktcltk
提出日時 2021-11-20 04:01:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 460 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 87,216 KB
最終ジャッジ日時 2024-06-10 17:31:50
合計ジャッジ時間 6,446 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
86,696 KB
testcase_01 AC 126 ms
86,748 KB
testcase_02 WA -
testcase_03 AC 127 ms
86,852 KB
testcase_04 AC 127 ms
86,548 KB
testcase_05 AC 125 ms
86,672 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 127 ms
86,668 KB
testcase_09 AC 126 ms
86,344 KB
testcase_10 AC 128 ms
86,508 KB
testcase_11 AC 127 ms
86,720 KB
testcase_12 AC 128 ms
86,276 KB
testcase_13 WA -
testcase_14 AC 126 ms
86,408 KB
testcase_15 AC 124 ms
86,408 KB
testcase_16 AC 129 ms
86,476 KB
testcase_17 AC 126 ms
86,936 KB
testcase_18 AC 126 ms
86,468 KB
testcase_19 AC 126 ms
86,560 KB
testcase_20 AC 125 ms
86,480 KB
testcase_21 AC 126 ms
86,740 KB
testcase_22 AC 126 ms
86,884 KB
testcase_23 AC 129 ms
86,668 KB
testcase_24 AC 127 ms
86,808 KB
testcase_25 AC 131 ms
86,792 KB
testcase_26 AC 127 ms
86,700 KB
testcase_27 AC 126 ms
86,580 KB
testcase_28 AC 129 ms
86,280 KB
testcase_29 AC 127 ms
86,868 KB
testcase_30 AC 126 ms
86,712 KB
testcase_31 AC 128 ms
86,952 KB
testcase_32 AC 128 ms
86,748 KB
testcase_33 AC 130 ms
86,684 KB
testcase_34 AC 127 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 = """22 20 UTC+8
# """
# sys.stdin = io.StringIO(_INPUT)

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

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