From fd4b78178ffe02f35cbe9c1244e37698f70be893 Mon Sep 17 00:00:00 2001 From: cuom1999 Date: Sun, 12 Jun 2022 15:00:14 +0700 Subject: [PATCH] Fix problem io position --- templates/problem/problem.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/templates/problem/problem.html b/templates/problem/problem.html index 672f303..d3ac052 100644 --- a/templates/problem/problem.html +++ b/templates/problem/problem.html @@ -258,6 +258,14 @@ {{ _('Memory limit:') }} {{ problem.memory_limit|kbsimpleformat }} +
+ {% for name, limit in problem.language_memory_limit %} +
+ {{ name }} + {{ limit|kbsimpleformat }} +
+ {% endfor %} +
{{ _('Input:') }} @@ -268,14 +276,6 @@ {{ _('Output:') }} {{ fileio_output or _('stdout') }}
-
- {% for name, limit in problem.language_memory_limit %} -
- {{ name }} - {{ limit|kbsimpleformat }} -
- {% endfor %} -