{% set title = problem.title %} {% set subtitle = '题目' %} {% set tab_links = { '题目!': '/problem/' + problem.id, '提交': '/problem/' + problem.id + '/submit', '提交记录': '/problem/' + problem.id + '/submission', } %} {% extends "layout.html" %} {% block container %}
{% for card in problem.statement %}
{{ card.title }}
{{ card.content | safe }}
{% endfor %}

时间限制

{{ str(problem.config.time_limit) + ' ms' }}

空间限制

{{ str(problem.config.memory_limit) + ' MiB' }}
{% endblock %}