J - Strange List

J - Strange List

You have given an array a of length n and an integer x to a brand new robot. What the robot does is the following: it iterates over the elements of the array, let the current element be q. If q is divisible by x, the robot adds x copies of the integer qx to the end of the array, and moves on to the next element. Note that the newly added elements could be processed by the robot later. Otherwise, if q is not divisible by x, the robot shuts down.

Please determine the sum of all values of the array at the end of the process.

Input
The first input line contains a single integer t (1≤t≤100) — the number of test cases.

The first line of each test case contains two integers n and x (1≤n≤105, 2≤x≤109) — the length of the array and the value which is used by the robot.

The next line contains integers a1, a2, …, an (1≤ai≤109) — the initial values in the array.

It is guaranteed that the sum of values n over all test cases does not exceed 105.

Output
For each test case output one integer — the sum of all elements at the end of the process.

Example
Input

2
1 2
12
4 2
4 6 8 2
Output
36
44
Note
In the first test case the array initially consists of a single element [12], and x=2. After the robot processes the first element, the array becomes [12,6,6]. Then the robot processes the second element, and the array becomes [12,6,6,3,3]. After the robot processes the next element, the array becomes [12,6,6,3,3,3,3], and then the robot shuts down, since it encounters an element that is not divisible by x=2. The sum of the elements in the resulting array is equal to 36.

In the second test case the array initially contains integers [4,6,8,2], and x=2. The resulting array in this case looks like [4,6,8,2,2,2,3,3,4,4,1,1,1,1,1,1].

#include <stdio.h>
#include <stdlib.h>
int main()
{
  int n,t,m,a[222222],i,flag;
   scanf("%d",&t);
  while(t--)
  {
   scanf("%d%d",&n,&m);
      for( i=0;i<n;i++)
       scanf("%d",&a[i]);
     long long sum=0,temp=1;
      flag=1;
      while(flag)
      {
          for(i=0;i<n;i++)
          {
              if(a[i]%temp==0)
                sum+=a[i];
              else
              {
                  flag=0;
                  break;
              }
          }
          temp*=m;
      }
      printf("%lld\n",sum);
  }
    return 0;
}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值