The score for each user is calculated based on their marks and the time taken (duration_millisecond
).
The equation for the score is:
Score=(wm​×Normalized Marks)+(wd​×Normalized Duration)
where:
- Normalized Marks=Max Marks−Min MarksMarks−Min Marks​
- Normalized Duration=1−Max Duration−Min DurationDuration−Min Duration​
The weights wm​
and wd​
are used to emphasize marks and duration, respectively, with typical values like wm​=0.7 and wd​=0.3. This scoring method encourages
high marks and efficient completion time by balancing accuracy and speed.