結果

問題 No.651 E869120 and Driving
ユーザー naoe123
提出日時 2020-01-06 08:35:25
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 32 ms / 1,000 ms
コード長 144 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-11-22 23:48:14
合計ジャッジ時間 1,050 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

a=int(input())
minute=a/100*60
h=minute//60
m='{:.0f}'.format(minute%60)

hh='{:.0f}'.format(10+h)
mm=str(m).rjust(2, '0')
print(str(hh)+':'+mm)
0