877. XOR-Equation A

We use xy for the bitwise XOR of x and y.
Define the XOR-product of x and y, denoted by xy, similar to a long multiplication in base 2, except that the intermediate results are XORed instead of the usual integer addition.

For example, 73=9, or in base 2, 1112112=10012:

11111121111112111111211111291110012

We consider the equation:

(aa)(2ab)(bb)=5

For example, (a,b)=(3,6) is a solution.

Let X(N) be the XOR of the b values for all solutions to this equation satisfying 0abN.
You are given X(10)=5.

Find X(1018).

877. 异或方程 1

我们记 xyxy 按位异或的结果。

我们定义 xy异或乘积 xy 如下:在列竖式进行二进制乘法时,其他步骤不变,只在最后得出结果时,将算出的每一列中的数字进行异或,而非原来的二进制加法。

例如,73=9。或将此等式表示为二进制为 1112112=10012。其计算过程如下:

11111121111112111111211111291110012

考虑方程:

(aa)(2ab)(bb)=5

例如,(a,b)=(3,6) 是如上方程的一组解。

考虑该方程所有满足 0abN 的解,并将这些解的 b 值的异或和记作 X(N)。已知:X(10)=5

X(1018)


这个链接 回到源站。

这个链接 回到详细版题目目录。