Ok. Comments revealed the source of the confusion. As a general philosophy here I want to mention the following. In the ring $R=\mathbb{Z}_K$ the residue class of $3$ has an inverse, namely the residue class of $65843621$. What this means is that we are replacing "division by $3$" with "multiplication by $65843621$". The result of such a multiplication is another integer (or a residue class modulo $K$ to be precise). What this means is that the result is "accurate". There is no rounding error.
Another way of saying the same thing is that because $3$ is a unit in the ring $R$, every other element of the ring is exactly divisible by $3$.
Another thing that newcomers to modular arithmetic often have problems with is the following. In a ring like $R$ here there is no meaningful$^{*)}$ concept of a size of an element, nor a meaningful way of saying that one element is larger than another. For example, if we assume that $0<1$, then we probably want to accept as a consequence that $1=0+1<1+1=2$, and as another consequence that $0<1<2$, so $0<2$. Continuing in this way we would have to accept as a consequence that $0. But here $K-1\equiv -1$, so we end up with $0<-1$. This renders the order relation useless.
The floor function ultimately depends on a sense of "betweenness" (a real number between two consequtive integers), so it, too, becomes meaningless in rings of modular integers.
$^{*)}$ Ok, some meaningful metrics can sometimes be defined, but they follow somewhat different rules than the familiar absolute value.
The problem that OP linked to is about the following. Let $J$ be the all ones $n\times n$ matrix, and let $I$ be the identity matrix with $n$ rows. A calculation by $n$ "cows" is to be carried out $T$ times. A single round of the calculation amounts to multiplying a certain vector with $n$ components, all from the ring $R$, with the matrix $-I+J$ (obviously modulo $K$). Altogether the task at hand is to efficiently compute the matrix power $ A_T=(-I+J)^T, $ where $T$ is a large integer.
Here we have the "atomic" rules $I\cdot I$, $I\cdot J=J$ and $J\cdot J=nJ$. As always, when computing large powers in a ring of modular integers, the so called square-and-multiply method works. As a consequence of the above rules we get the formula $ (aI+bJ)(cI+dJ)=acI+(ad+bc+bdn)J, $ all the coefficients are to be reduced modulo $K$. That's all we need! By induction we see that for all natural numbers $k$ $ A_k=f(k)I+g(k)J, $ and the task at hand is to compute the integers $f(T)$ and $g(T)$. All you need to do is to first compute $A_2$, $A_4$, $A_8$, $\ldots$ by repeated squaring $\log_2(T)$ squarings. Then you need to multiply the appropriate ones together using the above rule. Shouldn't take too long. Edit: Observe that you only need to compute and store the integers $f(k)=(-1)^k$ and $g(k)$ for the relevant integers $k$.