結果

問題 No.477 MVP
ユーザー ohanaohana
提出日時 2023-10-20 11:03:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 1,000 ms
コード長 174 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 80,328 KB
最終ジャッジ日時 2024-09-20 06:37:31
合計ジャッジ時間 2,174 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
80,328 KB
testcase_01 AC 104 ms
80,208 KB
testcase_02 AC 106 ms
80,320 KB
testcase_03 AC 103 ms
80,008 KB
testcase_04 AC 110 ms
80,264 KB
testcase_05 AC 106 ms
80,168 KB
testcase_06 AC 100 ms
80,160 KB
testcase_07 AC 103 ms
80,172 KB
testcase_08 AC 103 ms
80,068 KB
testcase_09 AC 104 ms
79,996 KB
testcase_10 AC 107 ms
80,048 KB
testcase_11 AC 107 ms
80,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import decimal

n, m = map(decimal.Decimal, input().split())

if n / (m + 1) == n // (m + 1):
    print(n // (m + 1) + 1)
else:
    print(math.ceil(n / (m + 1)))
0