1. You are given an array of n numbers. 2. You have to find the sum of bit differences in all pairs that can be formed from n numbers. 3. Bit difference of two numbers is defined as the count of different bits at same positions in binary representations of two numbers.
Input Format
A number n a1 a2.. n numbers
Output Format
Check the sample ouput and question video.
Constraints
1 <= n <= 10^9 1 <= arr[i] <= 10^9
Notice
Try First, Check Solution later
1. You should first read the question and watch the question video.2. Think of a solution approach, then try and submit the question on editor tab.3. We strongly advise you to watch the solution video for prescribed approach.Example
Input
3 1 2 3
Output
8