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.