跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2052. Magic Formulas

    ID: 2058 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 4 上传者: 标签>数学进阶难度共享题库Codeforces英文题面题目来源题面语言

Magic Formulas

题目描述

C. Magic Formulas
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

People in the Tomskaya region like magic formulas very much. You can see some of them below.

Imagine you are given a sequence of positive integer numbers p1, p2, ..., pn. Lets write down some magic formulas:

Here, "mod" means the operation of taking the residue after dividing.

The expression means applying the bitwise xor (excluding "OR") operation to integers x and y. The given operation exists in all modern programming languages. For example, in languages C++ and Java it is represented by "^", in Pascal − by "xor".

People in the Tomskaya region like magic formulas very much, but they don't like to calculate them! Therefore you are given the sequence p, calculate the value of Q.

Input

The first line of the input contains the only integer n (1≤n≤106). The next line contains n integers: p1,p2,...,pn (0≤pi≤2·109).

Output

The only line of output should contain a single integer − the value of Q.

Examples
Input
3
1 2 3
Output
3

题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 1644 题。保留原作者与原赛事署名。