Can somebody please tell me what is the verdict 'skipped' means?
| # | User | Rating |
|---|---|---|
| 1 | Benq | 3792 |
| 2 | VivaciousAubergine | 3647 |
| 3 | Kevin114514 | 3603 |
| 4 | jiangly | 3583 |
| 5 | turmax | 3559 |
| 6 | tourist | 3541 |
| 7 | strapple | 3515 |
| 8 | ksun48 | 3461 |
| 9 | dXqwq | 3436 |
| 10 | Otomachi_Una | 3413 |
| # | User | Contrib. |
|---|---|---|
| 1 | Qingyu | 157 |
| 2 | adamant | 153 |
| 3 | Um_nik | 147 |
| 4 | Proof_by_QED | 146 |
| 5 | Dominater069 | 145 |
| 6 | errorgorn | 141 |
| 7 | cry | 139 |
| 8 | YuukiS | 135 |
| 9 | TheScrasse | 134 |
| 10 | chromate00 | 133 |
| Name |
|---|



Plagiarism
If two different people submit near identical code, the system should recognize this and skip testing of the solution.
There are two cases in which your solution gets skipped.
1)if your first submitted solution passed pretest but you resubmitted solution to that problem again in that case your previous pretest passed solution will be skipped.
2)If two submitted code is almost same then who submitted it later that person's code will be skipped.
the same thing(no 1) happened with me in the most recent contest!! I was feeling low that what happened! Thank you for the clarification .
To clarify part 1 more: If you are in an ICPC-Style contest (for example Div. 3, Div. 4, Educational rounds) Then if the first solution passes in System testing, the other solution will be skipped. If it fails, the first solution will be skipped and the second solution tested in system testing.
If it isn't an ICPC-Style contest (for example Today's Div 2) Then the first solution will get skipped and the second solution will be used in system testing.