#P1301C. Ayoub's function
Ayoub's function
No submission language available for this problem.
Description
Ayoub thinks that he is a very smart person, so he created a function , where is a binary string (a string which contains only symbols "0" and "1"). The function is equal to the number of substrings in the string that contains at least one symbol, that is equal to "1".
More formally, is equal to the number of pairs of integers , such that (where is equal to the length of string ), such that at least one of the symbols is equal to "1".
For example, if "01010" then , because there are such pairs : .
Ayoub also thinks that he is smarter than Mahmoud so he gave him two integers and and asked him this problem. For all binary strings of length which contains exactly symbols equal to "1", find the maximum value of .
Mahmoud couldn't solve the problem so he asked you for help. Can you help him?
The input consists of multiple test cases. The first line contains a single integer () — the number of test cases. The description of the test cases follows.
The only line for each test case contains two integers , (, ) — the length of the string and the number of symbols equal to "1" in it.
For every test case print one integer number — the maximum value of over all strings of length , which has exactly symbols, equal to "1".
Input
The input consists of multiple test cases. The first line contains a single integer () — the number of test cases. The description of the test cases follows.
The only line for each test case contains two integers , (, ) — the length of the string and the number of symbols equal to "1" in it.
Output
For every test case print one integer number — the maximum value of over all strings of length , which has exactly symbols, equal to "1".
Samples
Note
In the first test case, there exists only strings of length , which has exactly symbol, equal to "1". These strings are: "100", "010", "001". The values of for them are: , so the maximum value is and the answer is .
In the second test case, the string with the maximum value is "101".
In the third test case, the string with the maximum value is "111".
In the fourth test case, the only string of length , which has exactly symbols, equal to "1" is "0000" and the value of for that string is , so the answer is .
In the fifth test case, the string with the maximum value is "01010" and it is described as an example in the problem statement.