I finally got my solution down to 24 instructions. It's actually a hack that will break in the following situations:
- mem[1] is maximum and mem[0]==mem[2] (e.g., 2,1000,2,3,4,...)
- if there is a zero in the array (so I do not count up to 20 but stop at the first zero)
Nevertheless it passes all tests

So is there a "correct" solution to this one?