mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-22 16:08:42 +00:00
47 lines
1.3 KiB
TypeScript
47 lines
1.3 KiB
TypeScript
export function normalize(key: string) {
|
|
return key.toUpperCase().replace(/ /g, '_');
|
|
}
|
|
|
|
export const VERDICT = new Proxy<Record<string, string>>(
|
|
{
|
|
RUNTIME_ERROR: 'Runtime Error',
|
|
WRONG_ANSWER: 'Wrong Answer',
|
|
OK: 'Accepted',
|
|
COMPILING: 'Compiling',
|
|
TIME_LIMIT_EXCEEDED: 'Time Limit Exceeded',
|
|
MEMORY_LIMIT_EXCEEDED: 'Memory Limit Exceeded',
|
|
IDLENESS_LIMIT_EXCEEDED: 'Idleness Limit Exceeded',
|
|
ACCEPTED: 'Accepted',
|
|
PRESENTATION_ERROR: 'Wrong Answer',
|
|
OUTPUT_LIMIT_EXCEEDED: 'Output Limit Exceeded',
|
|
EXTRA_TEST_PASSED: 'Accepted',
|
|
COMPILE_ERROR: 'Compile Error',
|
|
'RUNNING_&_JUDGING': 'Judging',
|
|
|
|
// Codeforces
|
|
'HAPPY_NEW_YEAR!': 'Accepted',
|
|
|
|
// LibreOJ
|
|
COMPILATIONERROR: 'Compile Error',
|
|
COMPILEERROR: 'Compile Error',
|
|
FILEERROR: 'File Error',
|
|
RUNTIMEERROR: 'Runtime Error',
|
|
TIMELIMITEXCEEDED: 'Time Limit Exceeded',
|
|
MEMORYLIMITEXCEEDED: 'Memory Limit Exceeded',
|
|
OUTPUTLIMITEXCEEDED: 'Output Limit Exceeded',
|
|
WRONGANSWER: 'Wrong Answer',
|
|
PARTIALLYCORRECT: 'Partially Correct',
|
|
JUDGEMENTFAILED: 'Judgment Failed',
|
|
SYSTEMERROR: 'Judgment Failed',
|
|
CONFIGURATIONERROR: 'Judgment Failed',
|
|
},
|
|
{
|
|
get(self, key) {
|
|
if (typeof key === 'symbol') return null;
|
|
key = normalize(key);
|
|
if (self[key]) return self[key];
|
|
return null;
|
|
},
|
|
}
|
|
);
|