結果

問題 No.651 E869120 and Driving
ユーザー k0825
提出日時 2019-04-29 22:35:50
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 31 ms / 1,000 ms
コード長 121 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-12-25 22:22:17
合計ジャッジ時間 989 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

a=int(input())
h=(10+a//100)%24
m=a%100/100*60;m=int(m)
if h<10: h='0'+str(h)
if m<10: m='0'+str(m)
print(h,':',m,sep='')
0