judge: objective

pull/386/head
undefined 2 years ago
parent ac289ae955
commit ca22feb62a

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

@ -31,7 +31,7 @@ export async function judge({
for (const key in config.answers) {
const [subtaskId, caseId] = key.split('-').map(Number);
const ansInfo = config.answers[key] as [string | string[], number];
const score = ansInfo[1];
const score = (+ansInfo[1]) || 0;
const baseInfo = {
subtaskId,
id: caseId,

Loading…
Cancel
Save