feat: add AST_CHECK_FAILED status and update result display

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-25 20:47:46 -06:00
parent 8e2fcceb8f
commit 18fc65f2ce
4 changed files with 17 additions and 3 deletions

View File

@@ -12,6 +12,7 @@ export enum SubmissionStatus {
judging = 7,
partial_accepted = 8,
submitting = 9,
ast_check_failed = 10,
}
export enum ContestStatus {
@@ -80,6 +81,10 @@ export const JUDGE_STATUS: {
name: "正在提交",
type: "info",
},
"10": {
name: "代码检查未通过",
type: "warning",
},
}
export const CONTEST_STATUS: {