START82D:
Possible Plagiarism on Problem ALIKE_THEM:
1.CodeChef: Practical coding for everyone
2.CodeChef: Practical coding for everyone
3.CodeChef: Practical coding for everyone
4.CodeChef: Practical coding for everyone
5.CodeChef: Practical coding for everyone
6.CodeChef: Practical coding for everyone
7.CodeChef: Practical coding for everyone
8.CodeChef: Practical coding for everyone
9.CodeChef: Practical coding for everyone
10.CodeChef: Practical coding for everyone
11.CodeChef: Practical coding for everyone
12.CodeChef: Practical coding for everyone
13.CodeChef: Practical coding for everyone
14.CodeChef: Practical coding for everyone
15.CodeChef: Practical coding for everyone
16.CodeChef: Practical coding for everyone
17.CodeChef: Practical coding for everyone
18.CodeChef: Practical coding for everyone
19.CodeChef: Practical coding for everyone
Most of the people are from kl university and usernames starting with klu
START82D:
Plagiarised code on Problem ALIKE_THEM:
Solution: 92785943 | CodeChef
Solution: 92800570 | CodeChef
Solution: 92800220 | CodeChef
Solution: 92800176 | CodeChef
Solution: 92797533 | CodeChef
Solution: 92797022 | CodeChef
Solution: 92796765 | CodeChef
Kindly look at below telegram channels which provides solutions while contest is ongoing. Kindly look at these channels before they may can change links/names.
Telegram: Contact @codeforces99 [Paid Solution Provider]
https://t.me/codechefalive[Paid]
These Channels directly provide solutions to users either on demand(Payment) or free of cost.
good
i saw the leaderboard for above screenshot with all submissions disqualified but ranking remains in top 100 how is it possible?
Its totally unfair.
@admin plz look into this check rank 5,7,8,9,13
The ranklist will look like this till the plagiarism process is over for that contest. For START82, it should be over soon.
Ratings would also update right once the plagiarism process is completed… the ratings of honest contestants really goes down in the final hour of the contest because of these cheaters.
That is done after a month.
List of plagiarized submissions in problem AWESUM_OR (START84D):
1)CodeChef: Practical coding for everyone
2)CodeChef: Practical coding for everyone
3)CodeChef: Practical coding for everyone
4)CodeChef: Practical coding for everyone
5)CodeChef: Practical coding for everyone
6)CodeChef: Practical coding for everyone
7)CodeChef: Practical coding for everyone
@admin plz ban these users with more than 3 plag marks
@admin plz update the rating and plagiarized users before next contest starts
I am very worried that rating hasn’t updated after the removal of cheaters from START82
#include <bits/stdc++.h>
using namespace std;
#define int long long
bool isOK(int p, int k, vector<vector> &a, vector<vector> &dp)
{
int n = a.size() - 1;
int m = a[0].size() - 1;
bool ok = false;
for (int i = 1; i <= n; i++)
for (int j = 1; j <= m; j++)
{
if (a[i][j] == 0)
continue;
int x1 = max(1LL, i - p);
int y1 = max(1LL, j - p);
int x2 = min(n, i + p);
int y2 = min(m, j + p);
int sum = dp[x2][y2] - dp[x2][y1 - 1] - dp[x1 - 1][y2] + dp[x1 - 1][y1 - 1];
if (sum >= k)
ok = true;
}
return ok;
}
signed main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int t = 1;
cin >> t;
while (t--)
{
int n, m, k;
cin >> n >> m >> k;
k++;
int sum = 0;
vector<vector<int>> a(n + 1, vector<int>(m + 1));
for (int i = 1; i <= n; i++)
for (int j = 1; j <= m; j++)
{
cin >> a[i][j];
sum += a[i][j];
}
vector<vector<int>> dp(n + 1, vector<int>(m + 1));
for (int i = 1; i <= n; i++)
for (int j = 1; j <= m; j++)
{
dp[i][j] = a[i][j];
dp[i][j] += dp[i][j - 1];
dp[i][j] += dp[i - 1][j];
dp[i][j] -= dp[i - 1][j - 1];
}
if (sum < k)
{
cout << -1 << endl;
continue;
}
int lo = 0, hi = max(n, m), md;
while (lo < hi)
{
md = (lo + hi) / 2;
if (isOK(md, k, a, dp))
hi = md;
else
lo = md + 1;
}
cout << lo << endl;
}
}
TripTastic Plagged code
Kindly ban all who used this code for cheating in Triptastic. I have posted after Contest.
I am very sad due to online cheating , I was able to solve 3 question in div2 within 35 minute , after that i have given lots of time in 4th question but not able to solve further . My rating decreases due to cheating .
Got to know that cheating was happening in telegram , please check these 2 telegram link where cheating is happening . I have reported these channels , everyone please go and report .
https://www.codechef.com/viewsolution/94355033
https://www.codechef.com/viewsolution/94354405
https://www.codechef.com/viewsolution/94354717
https://www.codechef.com/viewsolution/94354967
https://www.codechef.com/viewsolution/94354999
https://www.codechef.com/viewsolution/94354522
https://www.codechef.com/viewsolution/94354525
https://www.codechef.com/viewsolution/94354586
https://www.codechef.com/viewsolution/94354653
https://www.codechef.com/viewsolution/94354671
Every Solution in div 2 and div3. I checked for div2 and div3 only right now . Every solution is same as I posted above. All are doing Copy paste, Changing names. Why no action? Previous time no action was taken?
EPANLNK plagiarised code
Crazy Bishops on Chessboard plagiarised code
TELEGRAM group link: Telegram: Join Group Chat
@admin Please look into this and ban users having the same code as in the above images and get this telegram group deleted ASAP.
I got wrongly plagiarized, please don’t down my ratings. You can check my previous records. I had never been indulge in this type of activity.
It took months and years hard work to achieve this rating. please don’t down my ratings.
I received a mail stating that i have been penalized for plagiarism in starters 85 div3 but I haven’t done anything wrong and I am confident of that.
My Solution:
https://www.codechef.com/viewsolution/94257040
I just copied part of code from internet which was publicly available before the contest began. And I am mentioning the source below and I think the others might have done the same.
Source:
https://www.codechef.com/viewsolution/94750132
https://www.codechef.com/viewsolution/94794658
https://www.codechef.com/viewsolution/94797942
https://www.codechef.com/viewsolution/94793249
https://www.codechef.com/viewsolution/94792259
@admin do you any clarification about this solution
source for code
STARTERS 86 Div2
Plagiarised code on Problem Minimum Operation:
Solution: 94795892 | CodeChef
Solution: 94804338 | CodeChef
Solution: 94801807 | CodeChef
Solution: 94801865 | CodeChef
Solution: 94802416 | CodeChef
I saw on youtube after the contest(Starter 86) that one video has 1.4k views on 3rd problem’s solution.
This means let’s consider 1200 peoples wrote code from this and there was 2400 submission on that problem in the contest there are also other videos also for this problem. and also telegram channels.
So, there would approx just 200 genuine submissions.
Just because of this, our ratings are decreasing after solving 4 problems in div3.
Please take strict action CodeChef @admin .
No. of users penalized in the last 10 contests:
- START85 - 489
- START84 - 1013
- START83 - 1153
- START82 - 993
- START80 - 1112
- START79 - 886
- START78 - 794
- START77 - 1612
- COOK144 - 1390
- START76 - 1031
What about source of Plagiarism Telegram channels and some YouTube channels. Can you take some actions against them? or can ask telegram to put them down? Is there any way to do so?



