結果

問題 No.477 MVP
ユーザー NyanmaruP78NyanmaruP78
提出日時 2017-02-18 19:00:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 185 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 10,556 KB
実行使用メモリ 8,056 KB
最終ジャッジ日時 2023-08-28 18:54:05
合計ジャッジ時間 914 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,932 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 14 ms
7,964 KB
testcase_07 AC 14 ms
7,856 KB
testcase_08 AC 14 ms
8,024 KB
testcase_09 AC 14 ms
7,964 KB
testcase_10 AC 14 ms
7,936 KB
testcase_11 AC 14 ms
7,892 KB
権限があれば一括ダウンロードができます

ソースコード

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