Fix ranking bug IOI

This commit is contained in:
cuom1999 2021-11-07 16:37:56 -06:00
parent 415e5772d6
commit 5be07760ba

View file

@ -262,21 +262,24 @@
// get information // get information
let problem = linkElements[linkElements.length - 2]; let problem = linkElements[linkElements.length - 2];
let score = parseFloat(scoreAndTime[0]) let score = parseFloat(scoreAndTime[0]);
let time = scoreAndTime[1] let time = scoreAndTime[1];
console.log(time);
let curSubmission = { if (time) {
'td': $(this).parent(), let curSubmission = {
'score': score, 'td': $(this).parent(),
'time': time 'score': score,
'time': time
}
// update best submissions
let curBest = bestSubmissions[problem]
if (scoretimeComparison(curSubmission, curBest) && score) {
bestSubmissions[problem] = curSubmission;
}
} }
// update best submissions
let curBest = bestSubmissions[problem]
if (scoretimeComparison(curSubmission, curBest) && score) {
bestSubmissions[problem] = curSubmission;
}
} }
}) })
for (let problem in bestSubmissions) { for (let problem in bestSubmissions) {