diff --git a/src/config/judge.ts b/src/config/judge.ts index 75caecc..cfc66bf 100644 --- a/src/config/judge.ts +++ b/src/config/judge.ts @@ -1,13 +1,13 @@ // Result type definitions export enum ExitCode { - SE = 0, // System Error - CS = 1, // Compilation Success - CE = 2, // Compilation Error - TLE = 3, // Time Limit Exceeded - MLE = 4, // Memory Limit Exceeded - RE = 5, // Runtime Error - AC = 6, // Accepted - WA = 7, // Wrong Answer + SE = 0, // System Error + CS = 1, // Compilation Success + CE = 2, // Compilation Error + TLE = 3, // Time Limit Exceeded + MLE = 4, // Memory Limit Exceeded + RE = 5, // Runtime Error + AC = 6, // Accepted + WA = 7, // Wrong Answer } export type JudgeResult = {