結果

問題 No.477 MVP
ユーザー NyanmaruP78
提出日時 2017-02-18 19:00:35
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 185 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-12-30 04:10:59
合計ジャッジ時間 1,370 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 7 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding:utf-8
import math

get = input()
get = get.split(" ")
get = list(map(int,get))

nman = 1
tar_HP = get[0]
nman += get[1]

ellp = tar_HP / nman
ellp = math.ceil(ellp)

print(ellp)
0