aboutsummaryrefslogtreecommitdiff
path: root/works/solutions/acwing/1230.cpp
blob: 958cbdd7e71dde5fe03f35506b58cfe9402e4c2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include <iostream>

using ll = long long;

const int M = 100010;

int N, K;
ll p;
int c[M];
ll result;

int main() {
  std::ios_base::sync_with_stdio(false);
  std::cin.tie(nullptr);

  std::cin >> N >> K;

  c[0] = 1;

  for (int i = 1; i <= N; i++) {
    int a;
    std::cin >> a;

    p += a;

    int r = p % K;

    result += c[r];

    c[r]++;
  }

  std::cout << result;

  return 0;
}