本题中你需要输出一个整数,为本场比赛的总提交数。
赛后会将本题重测。若你输出了 $x$,实际有 $y$ 个提交,
- 当 $|x-y|>16$ 时,获得 0 分。
- 否则,获得 $\lfloor(20-|x-y|)^3/80\rfloor$ 分。
注:赛时,$y$ 已经被预设为 23333(所以你输出 23333 就能获得满分,但是赛后重测大概率会获得 0 分)。我们会在比赛结束后根据实际提交数更新 $y$ 的值,其中实际提交数定义为在比赛的“提交记录”页面内的提交数量。
In this problem, you need to output an integer representing the total number of submissions in this contest.
After the contest, this problem will be rejudged. If you output $x$, but the actual number of submissions is $y$,
- If $|x-y|>16$, you will receive 0 points.
- Otherwise, you will receive $\lfloor(20-|x-y|)^3/80\rfloor$ points.
Note: During the contest, $y$ is preset to 23333 (so if you output 23333, you will get full points, but you will likely receive 0 points after rejudging). We will update the value of $y$ after the contest based on the actual number of submissions, where the actual number of submissions is defined as the number of submissions on the "Submissions" page of the contest.