結果

問題 No.651 E869120 and Driving
ユーザー vagueinsigit
提出日時 2018-02-26 16:58:35
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 33 ms / 1,000 ms
コード長 203 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-22 08:56:08
合計ジャッジ時間 1,016 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

a = int(input())
hour, minute = divmod(a, 100)
o_clock = str(10+hour)
minutes = int(minute*0.6)
if minutes < 10:
    minutes = "0"+str(minutes)
else:
    minutes = str(minutes)
print(o_clock+":"+minutes)
0