This is a very simple online judge I made. Only C++17 supported right now. Try it here: https://ericjudge.nonrice.repl.co/
- Read the problem statement from the problemset
- Paste or type your code into the submit code section
- Type the appropriate problem ID into the submission ID section
- Press submit and wait for a response
- CPE, MLE, TLE, RTE verdicts are all implemented
- Modular problem system
- VIM MODE TOGGLE
PROBLEM_ID
├── input
│ ├── 1.txt
│ ├── 2.txt
│ ├── ...
├── judging_info.json
├── solution.cpp
└── statement.txt
PROBLEM_ID
: ID to be used in the submission systeminput
: Testcases must follow the naming convention1.txt, 2.txt, ...
judging_info.json
: judging criteria (see below)solution.cpp
: model solutionstatement.txt
: problem statement
{
"tl": 1,
"ml": 256000,
"tcs": 5
}
"tl"
time limit in seconds"ml"
memory limit in kilobytes"tcs"
number of test cases present ininput