<% this.title = '评测详细信息' %> <% include header %>
<% if (judge.allowedSeeResult) { %> <% } else { %> <% } %>
编号 题目名称 状态 分数 总时间 提交者 提交时间
#<%= judge.id %> #<%= judge.problem_id %>. <%= judge.problem.title %><%= judge.result.status %> <%= judge.result.score %> <%= judge.result.total_time %>隐藏 隐藏 隐藏<%= judge.user.username %><% if (judge.user.nameplate) { %><%- judge.user.nameplate %><% } %> <%= syzoj.utils.formatDate(judge.submit_time) %>
<% if (judge.allowedSeeCode) { %>
<%- judge.code %>
<% } %> <% if (judge.result.compiler_output && judge.result.status === 'Compile Error' && judge.allowedSeeCode) { %>

编译信息

<%- judge.result.compiler_output %>
<% } else if (judge.allowedSeeResult) { %>
<% for (let i = 0; i < judge.result.case_num; i++) { %> <% let testcase = judge.result[i]; %>
测试点 #<%= i + 1 %>
<% let icon = { 'Accepted': 'checkmark', 'Wrong Answer': 'remove', 'Runtime Error': 'bomb', 'Time Limit Exceed': 'clock', 'Memory Limit Exceed': 'disk outline', 'Output Limit Exceed': 'expand', 'Waiting': 'spinner', 'Compile Error': 'code', 'System Error': 'server' } %> <%= testcase.status %>
用时:<%= testcase.time_used %> ms
内存:<%= testcase.memory_used %> KiB

输入文件

<%= testcase.input %>
期望输出
<%= testcase.answer %>
你的输出
<%= testcase.user_out %>

<% } %>
<% } %> <% include footer %>