翻译如下:
- x⊕y 是 x,y 两个数中至少一个数的因子,其中 ⊕ 代表异或运算。
这是错误的,原题为:
Help him count the number of integers 1≤y≤m such that x⊕y is divisible ∗ by either x , y , or both. Here ⊕ is the bitwise XOR operator.
∗ The number a is divisible by the number b if there exists an integer c such that a=b⋅c .
正确的翻译应该是:
- x⊕y 是 x,y 两个数中至少一个数的倍数,其中 ⊕ 代表异或运算。
- $x\oplus y$ 是 $x,y$ 两个数中至少一个数的倍数,其中 $\oplus$ 代表异或运算。
@Maxmilite @minstdfx