結果

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

ソースコード

diff #

a=int(input())
b=int(a%100/(100/60))
if b<10:
    b="0"+str(b)
else:
    b=str(b)
print(str(a//100+10)+":"+b)
0