結果

問題 No.651 E869120 and Driving
ユーザー hooooyaert
提出日時 2018-07-24 12:44:46
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 137 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-23 01:34:49
合計ジャッジ時間 1,103 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

a = int(input())
time = a/100
hour = 10 + int(time)
min = str(int(100 + (time - int(time))*60))
m = min[1:]
print(str(hour)+':'+m)
0