結果

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

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

H,M,utc = read().split()
H = int(H)
M = int(M)
utc = float(utc[3:])

x = int(utc * 60 + .5)
T = 60 * H + M - 540 + x

T %= 1440
q,r = divmod(T,60)
print('{:02}:{:02}'.format(q,r))
0