CF776C.Molly's Chemicals

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Molly Hooper has nn different kinds of chemicals arranged in a line. Each of the chemicals has an affection value, The ii -th of them has affection value aia_{i} .

Molly wants Sherlock to fall in love with her. She intends to do this by mixing a contiguous segment of chemicals together to make a love potion with total affection value as a non-negative integer power of kk . Total affection value of a continuous segment of chemicals is the sum of affection values of each chemical in that segment.

Help her to do so in finding the total number of such segments.

输入格式

The first line of input contains two integers, nn and kk , the number of chemicals and the number, such that the total affection value is a non-negative power of this number kk . ( 1<=n<=1051<=n<=10^{5} , 1<=k<=101<=|k|<=10 ).

Next line contains nn integers a1,a2,...,ana_{1},a_{2},...,a_{n} ( 109<=ai<=109-10^{9}<=a_{i}<=10^{9} ) — affection values of chemicals.

输出格式

Output a single integer — the number of valid segments.

输入输出样例

  • 输入#1

    4 2
    2 2 2 2
    

    输出#1

    8
    
  • 输入#2

    4 -3
    3 -6 -3 12
    

    输出#2

    3
    

说明/提示

Do keep in mind that k0=1k^{0}=1 .

In the first sample, Molly can get following different affection values:

  • 22 : segments [1,1][1,1] , [2,2][2,2] , [3,3][3,3] , [4,4][4,4] ;
  • 44 : segments [1,2][1,2] , [2,3][2,3] , [3,4][3,4] ;
  • 66 : segments [1,3][1,3] , [2,4][2,4] ;
  • 88 : segments [1,4][1,4] .

Out of these, 22 , 44 and 88 are powers of k=2k=2 . Therefore, the answer is 88 .

In the second sample, Molly can choose segments [1,2][1,2] , [3,3][3,3] , [3,4][3,4] .

首页