{% extends "base.html" %} {% block head %} {{ super() }} {% endblock %} {% block title %}{{ event.name }} Description{% endblock %} {% block content %} {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% endif %} {% endwith %}
{{ event.problem.title }}, {{ event.title }}
{% if approved %} {% elif current_user.access_level in ['user', 'admin'] %} {% if asked %} Waiting for approval... {% else %}
{% endif %} {% endif %}
Rules
  • Submissions will open at (UTC) {{ event.opening_timestamp }}
  • When you submit, your submission is sent to be trained automatically. The jobs may wait some time in a queue before being run so be patient.
  • Pending (untrained) and failing submissions can be resubmitted under the same name at an arbitrary frequency.
  • Once your submission is trained, it cannot be deleted or replaced.
  • After each succesfully trained submission, you have to wait {{ event.min_duration_between_submissions }}s to resubmit.
  • The leaderboard is in "hidden" mode until (UTC) {{ event.public_opening_timestamp }} which means that all scores are visible, but the links pointing to the code of the participants are hidden. After (UTC) {{ event.public_opening_timestamp }}, all submitted codes are public. You will be encouraged to look at and reuse each other's code.
{{ description|safe }}
{% endblock %}