#E. E - Rem of Sum is Num

    传统题 1000ms 256MiB

E - Rem of Sum is Num

该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。

E - Rem of Sum is Num

Score : $500$ points

Problem Statement

Given are a sequence of $N$ positive integers $A_1, A_2, \ldots, A_N$, and a positive integer $K$.

Find the number of non-empty contiguous subsequences in $A$ such that the remainder when dividing the sum of its elements by $K$ is equal to the number of its elements. We consider two subsequences different if they are taken from different positions, even if they are equal sequences.

Constraints

  • All values in input are integers.
  • $1 \leq N \leq 2\times 10^5$
  • $1 \leq K \leq 10^9$
  • $1 \leq A_i \leq 10^9$

Input

Input is given from Standard Input in the following format:

NN KK

A1A_1 A2A_2 \cdots ANA_N

Output

Print the number of subsequences that satisfy the condition.


5 4
1 4 2 3 5
4

Four sequences satisfy the condition: $(1)$, $(4,2)$, $(1,4,2)$, and $(5)$.


8 4
4 2 4 2 4 2 4 2
7

$(4,2)$ is counted four times, and $(2,4)$ is counted three times.


10 7
14 15 92 65 35 89 79 32 38 46
8

2024暑假入门组刷题营第三期(五)

未参加
状态
已结束
规则
IOI
题目
8
开始于
2024-7-12 13:00
结束于
2024-7-12 15:00
持续时间
2 小时
主持人
参赛人数
9