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
37
38
39
40
41
#include <iostream>
#include <stdio.h>
using namespace std;
int m,d,n;
int w=0;
int C(int x)
{
  int z=0;
  while(x>0)
  {
      if(x%2!=0)
      {
        z++;
      }
    x=x/2;
  }
  return z;
}
int main()
{
    cin>>d>>m;
    int buf[d];
    for (int z=0;z<d;z++)
    {
        cin>>n;
        buf[z]=n;
    }
    int bity[d];
    int i=d-1;
    for(int y=m;y>m-d;y--)
    {
        bity[i]=y;
        i--;
    }
    for(int i=d-1;i>=0;i--)
    {
        w=w+(buf[i]*(C(bity[i])));
    }
    cout<<w<<endl;
    return 0;
    }