修改裁判一致率
continuous-integration/drone/push Build is running

This commit is contained in:
2024-10-29 15:55:59 +08:00
parent 052bff9247
commit fc392e869c
2 changed files with 2 additions and 2 deletions
@@ -1184,7 +1184,7 @@ namespace IRaCIS.Core.Application.Contracts
public string JudgeRatioStr => TotalJudgeCount == 0 ? $"NA" : $"{Math.Round((decimal)JudgeAgreeCount * 100 / TotalJudgeCount, 2)}%";
public string ExceptionMark => TotalJudgeCount == 0 ? $"Y" : (JudgeAgreeCount * 3 / TotalJudgeCount < 1) ? "Y" : "N";
public string ExceptionMark => TotalJudgeCount == 0 ? $"NA" : (JudgeAgreeCount * 3 / TotalJudgeCount < 1) ? "Y" : "N";
}