WA in XOREQUAL

Can anyone tell What is wrong in my code

const ll MX = 10e+5+5;
const ll MOD = 10e+9+7;
change above line to below and you will get AC.
const ll MX = 1e+5+5;
const ll MOD = 1e+9+7;
you are just adding one extra zero in mod value 10e+9+7 >10^9+7

2 Likes