Adapting in the age of AI

Revision en1, by naviS1mple, 2026-09-25 04:56:08

Below I present a few solutions that could be implemented that would in my opinion massively deter AI usage based cheating

AI cheating on Codeforces has similarities with chess and video games, but the available evidence is different.

Chess provides a sequence of moves and timings. Competitive programming largely exposes submitted code, while the reasoning happens elsewhere. AI assistance might provide an entire solution or just one crucial observation. Honest contestants also often produce similar implementations of the same algorithm, making “this looks like AI” a weak accusation.

I am proposing two possible solutions.

1. Identity verification

OTP verification could add some friction, although it only establishes access to an email address or phone number.

I would consider going further: a government ID and a live selfie, linked privately to one active rated account. Attaching an identity could discourage cheating by making account replacement harder and reduce smurfing.

It would not eliminate either. Validating documents is different from detecting the same person across multiple accounts, and verified accounts can still be shared.

Open-source starting points include IDVKit, an early iOS project supporting document-chip reading, face matching, and liveness, and DeepFace, which provides face verification and anti-spoofing components. Neither is a complete, universally reliable KYC solution, but they offer components worth evaluating.

Using open-source components and building internal tools could keep costs low by reducing reliance on paid verification services and their per-check fees. Sponsorship, community contributions, and verifying users once rather than every contest could also help. Hosting, maintenance, security, and support would still need resources.

I would start with an optional verified leaderboard to test the approach. This would have limited impact on cheating outside that leaderboard, but could help establish whether broader adoption is worthwhile. Mandatory ID checks could exclude younger participants and people uncomfortable sharing sensitive documents. Public handles should remain pseudonymous, with minimal identity-data retention.

2. AI reference solutions and internal flags

For each round, setters and testers could collect their own solutions alongside several outputs from commonly available models such as ChatGPT and Claude, using free access or subscriptions around $20 per month.

Models should initially receive only what contestants receive. The model, prompts, and date should be recorded, and unpublished problems should only be uploaded with organizer approval and suitable data-handling arrangements.

After the contest, tools such as MOSS or JPlag could compare submissions against other contestants and these reference solutions. JPlag runs locally, making it an option for an internally maintained system.

Similarity does not establish cheating. MOSS explicitly warns against that interpretation. Standard algorithms and templates naturally overlap, while AI-assisted code may look completely different. Setters’ solutions would help establish what ordinary similarities to expect.

I would use matches to create an internal review priority, loosely inspired by Trust Factor. Flags would prompt human inspection, without automatic bans, rating penalties, or public accusations. Unsupported flags should be cleared, and any eventual adverse decision should allow an appeal.

Before deployment, this needs testing against independently written human solutions and known AI-assisted solutions. Does adding AI examples improve detection? How many honest contestants get flagged? How much reviewer time does it require?

These are long-term proposals. Using open-source components and building internal tools could keep costs low, but making them effective would require volunteers to help build and test the tools, committed maintainers to keep them reliable, and resources for hosting and human review.

I would pilot the review system first and test identity verification on a smaller, voluntary basis. That would help establish the actual costs and benefits before expanding either system.

TL;DR: I am proposing two possible solutions: private identity verification to discourage disposable rated accounts, and an internal system comparing submissions against AI-generated reference solutions to prioritize human review. Open-source tools and community contributions could keep costs low, but both would require sustained volunteer effort and maintenance to work effectively over the long term.

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en1 English naviS1mple 2026-09-25 04:56:08 4830 Initial revision (published)