結果

問題 No.652 E869120 and TimeZone
コンテスト
ユーザー T1610
提出日時 2018-03-03 00:52:15
言語 Python3
(3.14.3 + numpy 2.4.2 + scipy 1.17.0)
結果
AC  
実行時間 155 ms / 1,000 ms
コード長 322 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 522 ms
コンパイル使用メモリ 20,680 KB
実行使用メモリ 15,484 KB
最終ジャッジ日時 2026-01-29 13:07:52
合計ジャッジ時間 7,200 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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