CF1301C.Ayoub's function

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Ayoub thinks that he is a very smart person, so he created a function f(s)f(s) , where ss is a binary string (a string which contains only symbols "0" and "1"). The function f(s)f(s) is equal to the number of substrings in the string ss that contains at least one symbol, that is equal to "1".

More formally, f(s)f(s) is equal to the number of pairs of integers (l,r)(l, r) , such that 1lrs1 \leq l \leq r \leq |s| (where s|s| is equal to the length of string ss ), such that at least one of the symbols sl,sl+1,,srs_l, s_{l+1}, \ldots, s_r is equal to "1".

For example, if $s = $ "01010" then f(s)=12f(s) = 12 , because there are 1212 such pairs (l,r)(l, r) : (1,2),(1,3),(1,4),(1,5),(2,2),(2,3),(2,4),(2,5),(3,4),(3,5),(4,4),(4,5)(1, 2), (1, 3), (1, 4), (1, 5), (2, 2), (2, 3), (2, 4), (2, 5), (3, 4), (3, 5), (4, 4), (4, 5) .

Ayoub also thinks that he is smarter than Mahmoud so he gave him two integers nn and mm and asked him this problem. For all binary strings ss of length nn which contains exactly mm symbols equal to "1", find the maximum value of f(s)f(s) .

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 tt ( 1t1051 \leq t \leq 10^5 ) — the number of test cases. The description of the test cases follows.

The only line for each test case contains two integers nn , mm ( 1n1091 \leq n \leq 10^{9} , 0mn0 \leq m \leq n ) — 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 f(s)f(s) over all strings ss of length nn , which has exactly mm symbols, equal to "1".

输入输出样例

  • 输入#1

    5
    3 1
    3 2
    3 3
    4 0
    5 2

    输出#1

    4
    5
    6
    0
    12

说明/提示

In the first test case, there exists only 33 strings of length 33 , which has exactly 11 symbol, equal to "1". These strings are: $s_1 = $ "100", $s_2 = $ "010", $s_3 = $ "001". The values of ff for them are: f(s1)=3,f(s2)=4,f(s3)=3f(s_1) = 3, f(s_2) = 4, f(s_3) = 3 , so the maximum value is 44 and the answer is 44 .

In the second test case, the string ss with the maximum value is "101".

In the third test case, the string ss with the maximum value is "111".

In the fourth test case, the only string ss of length 44 , which has exactly 00 symbols, equal to "1" is "0000" and the value of ff for that string is 00 , so the answer is 00 .

In the fifth test case, the string ss with the maximum value is "01010" and it is described as an example in the problem statement.

首页