@@ -210,7 +210,7 @@ public class ReportController {
JSONObject jsonObject = JSONObject.fromObject(scoreRange);
int rangeCount = 0;
int sumCount = 0;
- int total = (int) totalScore;
+ int total = (int) Math.ceil(totalScore);
for (int i = total; i >= 0; i--) {
if (i % range == 0) {
if (i == 0) {