結果

問題 No.477 MVP
ユーザー ohanaohana
提出日時 2023-10-20 11:00:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 104 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 81,372 KB
実行使用メモリ 79,072 KB
最終ジャッジ日時 2023-10-20 11:01:02
合計ジャッジ時間 2,570 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
79,072 KB
testcase_01 AC 121 ms
79,064 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 126 ms
79,068 KB
testcase_05 WA -
testcase_06 AC 115 ms
79,064 KB
testcase_07 AC 116 ms
79,064 KB
testcase_08 AC 116 ms
79,068 KB
testcase_09 AC 115 ms
79,068 KB
testcase_10 AC 125 ms
79,064 KB
testcase_11 AC 124 ms
79,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import decimal

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

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