add cpp checker

This commit is contained in:
cuom1999 2020-03-17 20:41:09 -06:00
parent f74f8b6e05
commit e820697e60
6 changed files with 2859 additions and 8 deletions

View file

@ -117,12 +117,18 @@
<td colspan="5">
<div class="case-info">
{% set curr_data = cases_data[case.case] %}
{% if curr_data != null %}
<strong>{{ _('Input:') }}</strong>
<pre class="case-output">{{ curr_data['input']|linebreaksbr }}</pre>
{% endif %}
<strong>{{ _('Output:') }}</strong>
<pre class="case-output">{{ case.output|linebreaksbr }}</pre>
{% if curr_data != null %}
<strong>{{ _('Answer:') }}</strong>
<pre class="case-output">{{ curr_data['answer']|linebreaksbr }}</pre>
{% endif %}
{% if case.extended_feedback or case.feedback %}
<strong>{{ _('Judge feedback:') }}</strong>