👩💻 Join our community of thousands of amazing developers!
diff --git a/reference/algorithm/minmax_element.md b/reference/algorithm/minmax_element.md index f475d357f..a6527a3ab 100644 --- a/reference/algorithm/minmax_element.md +++ b/reference/algorithm/minmax_element.md @@ -44,7 +44,7 @@ namespace std { ## 計算量 -`n` を範囲の要素数とする場合、[`max`](max.md)`(3(n / 2) - 1, 0)` 回の述語適用を行う。 +`n` を範囲の要素数とする場合、[`max`](max.md)`(floor(3(n - 1) / 2), 0)` 回の述語適用を行う。 ## 備考 ...