#ABC130D. Enough Array
Enough Array
题目描述
You are given a sequence of positive integers of length , , and an integer . How many contiguous subsequences of satisfy the following condition?
- (Condition) The sum of the elements in the contiguous subsequence is at least .
We consider two contiguous subsequences different if they derive from different positions in , even if they are the same in content.
Note that the answer may not fit into a -bit integer type.
给你一个长度为 , 的正整数序列和一个整数 。 有多少个连续的子序列满足以下条件?
- 条件)连续子序列中的元素之和至少为 。
如果两个连续子序列来自 的不同位置,即使它们的内容相同,我们也认为它们是不同的。
请注意,答案可能不适合 /位整数类型。
输入格式
输入内容按以下格式标准输入:
输出格式
打印 中满足条件的连续子序列的个数。
样例 #1
样例输入 #1
4 10
6 1 2 7
样例输出 #1
2
样例 #2
样例输入 #2
3 5
3 3 3
样例输出 #2
3
样例 #3
样例输入 #3
10 53462
103 35322 232 342 21099 90000 18843 9010 35221 19352
样例输出 #3
36
说明
数据规模与约定
样例 解释
以下两个连续的子序列满足条件:
- , 与 之和
- , 与 之和
样例 解释
请再次注意,如果两个连续的子序列来自不同的位置,即使它们的内容相同,我们也会认为它们是不同的。