Language | Compiler | Version | Command line | Extension |
---|
Accepted: | your program passed all tests and is accepted as correct; |
Compile Time Error: | the system was not able to successfully compile your program; the compiler returned an error or warning; |
Runtime Error: | your program "crashed", i. e. it exited prematurely due to a run-time error; |
Time Limit Exceeded: | your program did not finish within the given amount of time; |
Wrong Answer: | your program run through one or more test cases without a run-time error but the output did not match the expected output; |
Presentation Error: | the output seems to be correct but it is not presented in the required format. Since it is not always easy to distinguish this message from the wrong answer message, it is only sent in obvious cases; |
Invalid Submission: | your submission does not comply with expected extensions; or attempt to submit without following the interface; |
Output Limit Exceeded: | your program generates an output too long for this problem; the limits are dependent on the test cases, but are usually low (limit is around 100KB); |
Program Size Exceeded: | your program is too long and will not be considered (limit is around 100KB); |
Requires Reevaluation: | for some reason your program has to be re-evaluated; |
Invalid Function: | your program violates a contest rule
like calling non-standard libraries; it may be terminating
with exit(1) or even return 1 , or a similar
construct indicating an error in execute.
|