judge: support multi answers (#401, issue #397)

pull/405/head
panda 2 years ago committed by GitHub
parent 784180c0a9
commit 1ba52c5a18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,7 +1,7 @@
{
"name": "@hydrooj/hydrojudge",
"bin": "bin/hydrojudge.js",
"version": "2.22.5",
"version": "2.22.6",
"main": "package.json",
"author": "undefined <i@undefined.moe>",
"repository": "https://github.com/hydro-dev/Hydro.git",

@ -38,8 +38,9 @@ export async function judge({
time: 0,
memory: 0,
};
if (typeof ansInfo[0] === 'string') {
if (ansInfo[0]?.trim() === (answers[key] as any)?.trim()) {
if (typeof answers[key] === 'string') {
const stdAns = typeof ansInfo[0] === 'string' ? [ansInfo[0]] : ansInfo[0];
if (stdAns.some((ans) => ans.trim() === (answers[key] as any)?.trim())) {
totalScore += score;
totalStatus = Math.max(totalStatus, STATUS.STATUS_ACCEPTED);
next({

Loading…
Cancel
Save