我知道 (a*b)%M = (a%M * b%M)%M
但是如果等式是 :( (a*b)/c )%M ..我认为我也不能在这里使用上述逻辑..这里 M 是一个非质数..你可以假设 (a *b)/c 永远不会以浮点值结束..
For eg:
If a=10 b=9 and c=6,M=4 then (a*b)/c=15 and 15%4=3
but if I use the property as it is with multiplications then ((10%4*9%4)/(6%4))%4= (2*1)/2=1
请告诉我如何解决这种问题??