結果

問題 No.651 E869120 and Driving
ユーザー RK Python
提出日時 2020-06-02 10:29:37
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 31 ms / 1,000 ms
コード長 145 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-11-23 18:23:36
合計ジャッジ時間 1,070 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

a = int(input())
time = [10+a//100, int(a*60/100%60)]
if len(str(time[1])) == 1:
    time[1] = "0" + str(time[1])
print(":".join(map(str, time)))
0