結果

問題 No.477 MVP
ユーザー ohanaohana
提出日時 2023-10-20 11:00:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 104 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,552 KB
実行使用メモリ 80,436 KB
最終ジャッジ日時 2024-09-20 06:34:34
合計ジャッジ時間 2,502 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
80,212 KB
testcase_01 AC 112 ms
79,856 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 102 ms
80,300 KB
testcase_05 WA -
testcase_06 AC 105 ms
80,084 KB
testcase_07 AC 104 ms
80,112 KB
testcase_08 AC 108 ms
80,140 KB
testcase_09 AC 111 ms
79,928 KB
testcase_10 AC 109 ms
80,076 KB
testcase_11 AC 106 ms
80,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import decimal

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

print(math.ceil(n / (m + 1)))
0