#ABC105D. Candy Distribution
Candy Distribution
题目描述
There are boxes arranged in a row from left to right. The -th box from the left contains candies.
You will take out the candies from some consecutive boxes and distribute them evenly to children.
Such being the case, find the number of the pairs that satisfy the following:
- and are both integers and satisfy .
- is a multiple of .
有 个盒子,从左到右排成一排。左边的 个盒子里有 颗糖果。
你要从连续的几个盒子中拿出糖果,然后平均分配给 个孩子。
在这种情况下,求满足下面条件的 对的个数:
- 和 都是整数,且满足 。
- 是 的倍数。
输入格式
输入内容按以下格式标准输入:
输出格式
打印满足条件的线对 的数量。
注意,这个数字可能不适合 (位)整数类型。
样例 #1
样例输入 #1
3 2
4 1 5
样例输出 #1
3
样例 #2
样例输入 #2
13 17
29 7 5 7 9 51 7 13 8 55 42 9 81
样例输出 #2
6
样例 #3
样例输入 #3
10 400000000
1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000
样例输出 #3
25
说明
数据规模与约定
- 所有输入值均为整数。
样例 解释
每对 的总和 如下:
- 的总和:
- 的总和:
- 的总和:
- 的总和:
- 的总和:
- 的总和:
其中有三个是 的倍数。