1940.Varying Kibibits

Time Limit: 1s Memory Limit: 256MB

You are given n integers a1,a2,...,an. Denote this list of integers as T.Let f(L) be a function that takes in a non-empty list of integers L.The function will output another integer as follows: First, all integers in L are padded with leading zeros so they are all the same length as the maximum length number in L. We will construct a string where the i-th character is the minimum of the i-th character in padded input numbers. The output is the number representing the string interpreted in base 10. For example f(10,9)=0, f(123,321)=121, f(530,932,81)=30.Define the function 1940_1.png Here, 1940_2.png denotes a subsequence.
In other words, G(x) is the sum of squares of sum of elements of nonempty subsequences of T that evaluate to x when plugged into f modulo 1000000007, then multiplied by x. The last multiplication is not modded. You would like to compute G(0),G(1),...,G(999999). To reduce the output size, print the value 1940_3.png, where 1940_4.png denotes the bitwise XOR operator.

Input Format(From the terminal/stdin)

Input The first line contains the integer n (1 \le n \le 1000000)- the size of list T.The next line contains n space-separated integers, a1,a2,...,an (0 \le ai \le 999999)- the elements of the list.

Output Format(To the terminal/stdout)

Output Output a single integer, the answer to the problem.

Sample Input 1

Copy
3
123 321 555
 \n
   ·   ·   \n

Sample Output 1

Copy
292711924
         \n

Sample Input 2

Copy
1
999999
 \n
      \n

Sample Output 2

Copy
997992010006992
               \n

Sample Input 3

Copy
10
1 1 1 1 1 1 1 1 1 1
  \n
 · · · · · · · · · \n

Sample Output 3

Copy
28160
     \n

Hints

For the first sample, the nonzero values of G are G(121)=144611577, G(123)=58401999, G(321)=279403857, G(555)=170953875. The bitwise XOR of these numbers is equal to 292711924.For example, 1940_5.png, since the subsequences [123] and [123,555] evaluate to 123 when plugged into f.For the second sample, we have 1940_6.pngFor the last sample, we have 1940_7.png, where 1940_8.png is the binomial coefficient.

Submit

请先 登录

© 2025 FAQs