{% extends "contest.html" %} {% set page = "documentation" %} {% block core %}

{% trans %}Programming languages and libraries{% endtrans %}

{% if contest.languages|map("to_language")|map(attribute="source_extensions")|any("contains", ".cpp") %}

C++

{% trans %}Standard Template Library{% endtrans %}

{% endif %} {% if contest.languages|map("to_language")|map(attribute="source_extensions")|any("contains", ".java") %}

Java

{% trans %}The main Java class of the solution should have exactly the same name as the task.{% endtrans %}

{% endif %}

{% trans %}Submission details for compilation{% endtrans %}

{% for message in COMPILATION_MESSAGES.all() %} {% endfor %}
{% trans %}Message{% endtrans %} {% trans %}Explanation{% endtrans %}
{{ _(message.message) }} {{ _(message.help_text) }}

{% trans %}Submission details for evaluation{% endtrans %}

{% for message in EVALUATION_MESSAGES.all() %} {% endfor %}
{% trans %}Message{% endtrans %} {% trans %}Explanation{% endtrans %}
{{ _(message.message) }} {{ _(message.help_text) }}
{% endblock core %}