File tree Expand file tree Collapse file tree 2 files changed +27
-9
lines changed
Expand file tree Collapse file tree 2 files changed +27
-9
lines changed Original file line number Diff line number Diff line change 8181 <th scope =" col" >score</th >
8282 {% endif %}
8383 {% if showExternalResult and not showExternalTestcases %}
84- <th scope =" col" >external result</th >
84+ <th scope =" col" >ext. result</th >
85+ {% if is_scoring %}
86+ <th scope =" col" >ext. score</th >
87+ {% endif %}
8588 {% endif %}
8689 {% if not showExternalResult or not showExternalTestcases %}
8790 <th scope =" col" class =" table-button-head-left" >verified</th >
168171 {{ submission | printValidJurySubmissionResult }}
169172 </a >
170173 </td >
171- <td class =" right" >
172- {% if submission .score is not null %}
173- {{ submission .score | number_format(2 , ' .' , ' ' ) }}
174- {% else %}
175- {{ ' -' }}
176- {% endif %}
177- </td >
174+ {% if is_scoring %}
175+ <td class =" right" >
176+ {% if submission .score is not null %}
177+ {{ submission .score | number_format(2 , ' .' , ' ' ) }}
178+ {% else %}
179+ {{ ' -' }}
180+ {% endif %}
181+ </td >
182+ {% endif %}
178183 {% if showExternalResult and not showExternalTestcases %}
179184 {% if submission .externalJudgements .empty %}
180185 {% set externalJudgement = null %}
192197 {% endif %}
193198 </a >
194199 </td >
200+ {% if is_scoring %}
201+ <td class =" {{ tdExtraClass }}" >
202+ {% if externalJudgement is not null and externalJudgement .score is not null %}
203+ {{ externalJudgement .score | number_format(2 , ' .' , ' ' ) }}
204+ {% else %}
205+ {{ ' -' }}
206+ {% endif %}
207+ </td >
208+ {% endif %}
195209 {% endif %}
196210 {% if not showExternalResult or not showExternalTestcases %}
197211 {%- set claim = false %}
Original file line number Diff line number Diff line change 409409 {% if submission .importError %}
410410 External result: {{ externalJudgement .result | printValidJuryResult }}
411411 {% else %}
412- (external: {{ externalJudgement .result | printValidJuryResult }})
412+ (external: {{ externalJudgement .result | printValidJuryResult }}
413+ {% if submission .problem .scoringProblem %}
414+ , score: {{ " %.2f" | format(externalJudgement .score ) }}
415+ {% endif %}
416+ )
413417 {% endif %}
414418 {%- endif %}
415419 {%- if selectedJudging is not null and judgehosts is not empty -%}
You can’t perform that action at this time.
0 commit comments