結果

問題 No.652 E869120 and TimeZone
ユーザー tcltktcltk
提出日時 2021-11-20 04:01:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 460 bytes
コンパイル時間 1,323 ms
コンパイル使用メモリ 87,216 KB
実行使用メモリ 89,708 KB
最終ジャッジ日時 2023-08-30 17:55:41
合計ジャッジ時間 12,760 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 213 ms
89,452 KB
testcase_01 AC 211 ms
89,340 KB
testcase_02 WA -
testcase_03 AC 214 ms
89,492 KB
testcase_04 AC 213 ms
89,624 KB
testcase_05 AC 213 ms
89,316 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 214 ms
89,452 KB
testcase_09 AC 211 ms
89,316 KB
testcase_10 AC 210 ms
89,508 KB
testcase_11 AC 214 ms
89,456 KB
testcase_12 AC 216 ms
89,312 KB
testcase_13 WA -
testcase_14 AC 215 ms
89,380 KB
testcase_15 AC 212 ms
89,192 KB
testcase_16 AC 215 ms
89,332 KB
testcase_17 AC 213 ms
89,348 KB
testcase_18 AC 217 ms
89,244 KB
testcase_19 AC 216 ms
89,504 KB
testcase_20 AC 218 ms
89,628 KB
testcase_21 AC 214 ms
89,584 KB
testcase_22 AC 212 ms
89,456 KB
testcase_23 AC 211 ms
89,304 KB
testcase_24 AC 213 ms
89,624 KB
testcase_25 AC 216 ms
89,548 KB
testcase_26 AC 211 ms
89,344 KB
testcase_27 AC 212 ms
89,552 KB
testcase_28 AC 214 ms
89,492 KB
testcase_29 AC 211 ms
89,196 KB
testcase_30 AC 215 ms
89,500 KB
testcase_31 AC 214 ms
89,496 KB
testcase_32 AC 220 ms
89,628 KB
testcase_33 AC 221 ms
89,388 KB
testcase_34 AC 213 ms
89,196 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