Skip to content

Commit

Permalink
Fix doc of FloorSum
Browse files Browse the repository at this point in the history
  • Loading branch information
kzrnm committed Nov 25, 2023
1 parent 729e330 commit c21a1ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/ac-library-csharp/Math/Internal/FloorSum.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace AtCoder.Internal
public static class FloorSum
{
/// <summary>
/// sum_{i=0}^{<paramref name="n"/>-1} floor(<paramref name="a"/>*i+<paramref name="b"/>/<paramref name="m"/>) を返します。答えがオーバーフローしたならば  mod2^64 で等しい値を返します。
/// sum_{i=0}^{<paramref name="n"/>-1} floor((<paramref name="a"/>*i+<paramref name="b"/>)/<paramref name="m"/>) を返します。答えがオーバーフローしたならば  mod2^64 で等しい値を返します。
/// </summary>
/// <remarks>
/// <para>制約:</para>
Expand Down

0 comments on commit c21a1ec

Please sign in to comment.