結果

問題 No.651 E869120 and Driving
ユーザー reforefo2reforefo2
提出日時 2020-05-08 14:25:43
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 29 ms / 1,000 ms
コード長 275 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-03 09:50:19
合計ジャッジ時間 891 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

a = int(input())
Time_h = 10
Time_m = 0

dt_h = a//100
dt_m = (a%100)*60/100

Time_h = int(Time_h + dt_h)
Time_m = int(Time_m + dt_m)

if len(str(Time_m)) == 1:
    print("".join([str(Time_h), ":", "0", str(Time_m)]))
else:
    print("".join([str(Time_h), ":", str(Time_m)]))
0