Codeforces Round 776 (Div. 3) |
---|
Finished |
Not so long ago, Vlad came up with an interesting function:
For example, with $$$a=3$$$ and $$$x=11$$$, the value $$$f_3(11) = \left\lfloor\frac{11}{3}\right\rfloor + 11 \bmod 3 = 3 + 2 = 5$$$.
The number $$$a$$$ is fixed and known to Vlad. Help Vlad find the maximum value of $$$f_a(x)$$$ if $$$x$$$ can take any integer value from $$$l$$$ to $$$r$$$ inclusive ($$$l \le x \le r$$$).
The first line of input data contains an integer $$$t$$$ ($$$1 \le t \le 10^4$$$) — the number of input test cases.
This is followed by $$$t$$$ lines, each of which contains three integers $$$l_i$$$, $$$r_i$$$ and $$$a_i$$$ ($$$1 \le l_i \le r_i \le 10^9, 1 \le a_i \le 10^9$$$) — the left and right boundaries of the segment and the fixed value of $$$a$$$.
For each test case, output one number on a separate line — the maximum value of the function on a given segment for a given $$$a$$$.
51 4 35 8 46 10 61 1000000000 100000000010 12 8
2 4 5 999999999 5
In the first sample:
As an answer, obviously, $$$f_3(2)$$$ and $$$f_3(4)$$$ are suitable.
Name |
---|