From 1f3ca0d6009934f684c84a7e5e646ab5542879b8 Mon Sep 17 00:00:00 2001 From: Ashar Fuadi Date: Mon, 18 Nov 2024 21:51:43 +0700 Subject: [PATCH] Docs: fix misleading verdict format for OK --- web/docs/api/05-helper.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web/docs/api/05-helper.md b/web/docs/api/05-helper.md index e9e6e53..ac1a728 100644 --- a/web/docs/api/05-helper.md +++ b/web/docs/api/05-helper.md @@ -122,7 +122,7 @@ A scorer and communicator should output the verdict of a test case in the follow |Verdict|Meaning| |-|-| -|`AC`|The solution receives full points.| -|`WA`|The solution receives zero points.| -|`OK X`|The solution receives partial points, which is `X`.
`X` can be a floating point.
E.g.: `OK 71`| -|`OK P%`|The solution receives partial points, which is `P`% of the full points.
E.g.:`OK 50%`| +|
AC
|The solution receives full points.| +|
WA
|The solution receives zero points.| +|
OK
X
|The solution receives partial points, which is `X`.
`X` can be a floating point.
E.g.:
OK
71
| +|
OK
P%
|The solution receives partial points, which is `P`% of the full points.
E.g.:
OK
50%
|