{{problem.name}}

{#% # if localmode %#} {#% else %#} Viewer {#% endif %#}

ソルバ一覧

{% for k, w in workers.items() %} {% endfor %}
Worker Status
{{w.name}} ({{w.address}}) {{w.status}}

処理結果一覧

{% for k, v in problem.get_solutions().items() %} {% set tr_class = '' %} {% set tr_class = tr_class + ' submit-solution' if k == problem.best_solution else '' %} {% set tr_class = tr_class + ' valid-solution' if v.is_valid_solution() else '' %} {% endfor %}
Timestamp Client Score
{{v.timestamp_str}} {{v.worker}} {% if v.is_valid_solution() %} {{v.score}} ({{v.size_str}}) {% else %} {{v.status}} {% endif %}