CF216E.Martian Luck

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You know that the Martians use a number system with base kk . Digit bb ( 0<=b<k ) is considered lucky, as the first contact between the Martians and the Earthlings occurred in year bb (by Martian chronology).

A digital root d(x)d(x) of number xx is a number that consists of a single digit, resulting after cascading summing of all digits of number xx . Word "cascading" means that if the first summing gives us a number that consists of several digits, then we sum up all digits again, and again, until we get a one digit number.

For example, d(35047)=d((3+5+0+4)7)=d(157)=d((1+5)7)=d(67)=67d(3504_{7})=d((3+5+0+4)_{7})=d(15_{7})=d((1+5)_{7})=d(6_{7})=6_{7} . In this sample the calculations are performed in the 7-base notation.

If a number's digital root equals bb , the Martians also call this number lucky.

You have string ss , which consists of nn digits in the kk -base notation system. Your task is to find, how many distinct substrings of the given string are lucky numbers. Leading zeroes are permitted in the numbers.

Note that substring s[i... j]s[i...\ j] of the string s=a1a2... ans=a_{1}a_{2}...\ a_{n} ( 1<=i<=j<=n1<=i<=j<=n ) is the string aiai+1... aja_{i}a_{i+1}...\ a_{j} . Two substrings s[i1... j1]s[i_{1}...\ j_{1}] and s[i2... j2]s[i_{2}...\ j_{2}] of the string ss are different if either i1i2i_{1}≠i_{2} or j1j2j_{1}≠j_{2} .

输入格式

The first line contains three integers kk , bb and nn ( 2<=k<=1092<=k<=10^{9} , 0<=b<k , 1<=n<=1051<=n<=10^{5} ).

The second line contains string ss as a sequence of nn integers, representing digits in the kk -base notation: the ii -th integer equals aia_{i} ( 0<=a_{i}<k ) — the ii -th digit of string ss . The numbers in the lines are space-separated.

输出格式

Print a single integer — the number of substrings that are lucky numbers.

Please, do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use the cin, cout streams or the %I64d specifier.

输入输出样例

  • 输入#1

    10 5 6
    3 2 0 5 6 1
    

    输出#1

    5
  • 输入#2

    7 6 4
    3 5 0 4
    

    输出#2

    1
  • 输入#3

    257 0 3
    0 0 256
    

    输出#3

    3

说明/提示

In the first sample the following substrings have the sought digital root: s[1... 2]s[1...\ 2] = "3 2", s[1... 3]s[1...\ 3] = "3 2 0", s[3... 4]s[3...\ 4] = "0 5", s[4... 4]s[4...\ 4] = "5" and s[2... 6]s[2...\ 6] = "2 0 5 6 1".

首页