When you receive each submission for an assessment that involves test cases, you will observe various statuses in the Test Cases Result. Here’s the explanation of each status:
Status | Explanation |
Correct | The test case was executed perfectly. |
Wrong | The program runs without errors, but the function does not produce the correct output. |
Execution Timeout | The program runs without errors but was terminated due to exceeding the execution time limit |
Runtime Error | The program runs successfully but was stopped due to an error. |
Compile Error | Failed to compile the source code due to syntax errors or similar issues; it will not run. |
Memory Exceeded | The program runs successfully but was stopped due to exceeding the memory usage limit. |