Skip to content
源代码提交(2)
...@@ -109,6 +109,9 @@ if __name__ == "__main__": ...@@ -109,6 +109,9 @@ if __name__ == "__main__":
if not judge_time: if not judge_time:
print("Submission %s is still in queue." % submission_id) print("Submission %s is still in queue." % submission_id)
else: else:
if score < 0:
print("Submission %s for evaluation has failed. We are currently experiencing issues with the evaluation system. Please check official updates and try again later. This submission will not be counted into your quota." % submission_id)
exit(0)
print("Submission %s score: %s" % (submission_id, score)) print("Submission %s score: %s" % (submission_id, score))
exit(0) exit(0)
else: else:
......