In the last round (Codeforces Round 1007 (Div. 2)) I have noticed multiple people submitting similar solutions, The cheaters just copied a solution for 2071D1 - Infinite Sequence (Easy Version), After some search (I really need to get a life) I was able to find the solution on you that they copied from:
The two important line here are these:
cout << a[(int)l] << "\n";
and
if (m <= n) return p[(int)m];
There is no real reason for someone to cast an to index from long long to int in the middle of the contest, but, most cheaters also have this in their code (some even cast to ll for some reason)
Of course people who cheated must also have the same approach, but this eliminates the possibility that they may have came with the same solution as the one leaked on youtube.
Here are some cheaters from the top 20:
308322024 (He is using Java, but still it's hard to not be copied)
I was planning to do the entire first page, but didn't expect to find that much cheaters, doing the entire first page would take forever..
Note that these are the submissions that copied the type cast, maybe there are still some cheaters didn't do so, the type cast indicates that the original solution that these was copied from was written in a language like Java.
The fact that a lot of people were able to cheat their way to the top 20 of a div 2 and have a performance of a red coder is scary.
I think IP ban should be implemented into codeforces to reduce cheating, because this is becoming a real issue.