結果

問題 No.652 E869120 and TimeZone
コンテスト
ユーザー T1610
提出日時 2018-03-03 00:49:46
言語 Python3
(3.14.3 + numpy 2.4.4 + scipy 1.17.1)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
WA  
実行時間 -
コード長 299 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 644 ms
コンパイル使用メモリ 20,956 KB
実行使用メモリ 15,488 KB
最終ジャッジ日時 2026-03-07 12:22:50
合計ジャッジ時間 4,415 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 30 WA * 1
権限があれば一括ダウンロードができます

ソースコード

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
print(toStrDig((int(z)+24)%24, 2) + ":" +toStrDig(int((z - int(z)) * 60 + 0.00000001), 2))


0