{% extends "layout/basic.html" %} {% block content %}

{{ _('Problem calibration') }}

{{ _('Problems with a very low success rate may have a confusing statement or wrong test data; very high rates may be too easy.') }}

{%- for r in problemRows -%} {%- endfor -%} {%- if not problemRows.length -%} {%- endif -%}
{{ _('Problem') }} {{ _('Success rate') }} {{ _('Solvers') }} / {{ _('Attempters') }} {{ _('Avg. attempts to solve') }}
{{ r.pid }} — {{ r.title }} {{ r.successRate }}% {{ r.solvers }} / {{ r.attempters }} {% if r.avgAttempts is not none %}{{ r.avgAttempts }}{% else %}—{% endif %} {% if r.flag == 'hard' %}{{ _('Review: too hard') }} {% elif r.flag == 'easy' %}{{ _('Too easy') }}{% endif %}
{{ _('No Submissions') }}

{{ _('Language distribution') }}

{%- for l in langs -%} {%- endfor -%} {%- if not langs.length -%}{%- endif -%}
{{ _('Language') }}{{ _('Submissions') }}%
{{ l.lang }}{{ l.count }}{{ l.pct }}%
{{ _('No Submissions') }}
{% endblock %}