Consider:
$$ e = 2^{16} + 1 = 65537 $$
$$ m = a^e \text{ (mod $p$)} \oplus b^e \text{ (mod $p$)} \oplus c^e \text{ (mod $p$)} $$
$$ n = abc x^3 \pmod{p} $$
a is between 1000~2000, b is between 2000~3000, c is between 3000~4000
If $m$, $n$, $e$, $p$ are known and $e$, $p$ are primes ( $p$ is much larger than $e$), $x$ is message
Are there some hints or methods can make me try to find out the $a$, $b$, $c$?
I think it's similar to some kind of RSA, but there isn't $n$.
I also try Fermat's little theorem, but e and p are not actually have relationship.
I even try Williams's p + 1 algorithm, but its result seems like not helpful in the question.