Codeforces 424C(异或)

本文介绍了一种特殊的魔法公式计算方法,该方法应用于一系列正整数的处理中,通过使用位运算和特定的数学操作来计算最终的Q值。文章提供了一个C++实现示例,展示了如何读取输入并进行高效计算。
Magic Formulas
Time Limit: 2000MS Memory Limit: 262144KB 64bit IO Format: %I64d & %I64u

 Status

Description

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 p1p2, ..., 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.

Sample Input

Input
3
1 2 3
Output
3

Source

Codeforces Round #242 (Div. 2)
#include<stdio.h>
#include<string.h>
#include<iostream>
using namespace std;
typedef long long LL;
int a[1000005],b[1000005];
int main()
{
    int i,j,t,len,n,s,ans;
    while(scanf("%d",&n)!=EOF)
    {
        scanf("%d",&t);
        ans=t;
        for(i=2;i<=n;i++)
        {
            scanf("%d",&t);
            ans^=t;
        }
        b[0]=0;
        for(i=1;i<=n;i++)
        {
            b[i]=b[i-1]^i;
            int tmp=n/i;
            if(tmp&1)
            ans^=b[i-1];
            if(n%i)
            ans=ans^b[n%i];
        }
        printf("%d\n",ans);
    }
    return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值