結果

問題 No.652 E869120 and TimeZone
ユーザー T1610
提出日時 2018-03-03 00:52:15
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 28 ms / 1,000 ms
コード長 322 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-11 12:24:04
合計ジャッジ時間 1,828 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

def toStrDig(n, dig) :
    s = str(n)
    if len(s) < dig   :
        s = ('0' * (dig - len(s))) + s
    return s 
S = input().split()
x = (int(S[0])-9+24)%24 + int(S[1])/60
y = float(S[2][3 : ])
z = x + y
while z < 0 :
    z += 24
print(toStrDig((int(z))%24, 2) + ":" +toStrDig(int((z - int(z)) * 60 + 0.00000001), 2))


0