总题目
{{ total_challenges }}
{{ total_flags }} flags
已解决
{{ solved_challenges }}
{% if total_challenges > 0 %}{{ '%.1f' | format(solved_challenges / total_challenges * 100) }}%{% else %}0%{% endif %}
总得分
{{ earned_points }}/{{ total_points }}
运行中实例
{{ running_count }}
/ {{ total_challenges }}

关卡进度

{{ level_progress|length }} levels
{% for lp in level_progress %}
{% if lp.unlocked and lp.total > 0 and lp.solved >= lp.total %} {{ lp.level }} {% elif lp.unlocked %} {{ lp.level }} {% else %} {{ lp.level }} {% endif %} Level {{ lp.level }} {% if lp.unlocked and lp.total > 0 and lp.solved >= lp.total %} 已通过 {% elif not lp.unlocked %} {% endif %}
{{ lp.solved }}/{{ lp.total }}
{% if lp.unlocked and lp.total > 0 and lp.solved >= lp.total %}
{% elif lp.unlocked %}
{% else %}
需通过 Level {{ lp.level - 1 }} 解锁
{% endif %}
{% endfor %} {% if not level_progress %}
暂无赛题数据
{% endif %}

最近提交

查看全部
{% for sub in recent_submissions %}
{{ sub.timestamp[11:19] if sub.timestamp|length > 19 else sub.timestamp }} {{ sub.benchmark_id }} {% if sub.correct %} +{{ sub.points }} {% else %} 错误 {% endif %}
{% endfor %} {% if not recent_submissions %}
暂无提交记录
{% endif %}

难度分布

{% for ds in difficulty_stats %} {% if ds.difficulty == 'easy' %}
E
Easy {{ ds.solved }}/{{ ds.total }} · {% if ds.total > 0 %}{{ '%.0f' | format(ds.solved / ds.total * 100) }}%{% else %}0%{% endif %}
{% elif ds.difficulty == 'medium' %}
M
Medium {{ ds.solved }}/{{ ds.total }} · {% if ds.total > 0 %}{{ '%.0f' | format(ds.solved / ds.total * 100) }}%{% else %}0%{% endif %}
{% elif ds.difficulty == 'hard' %}
H
Hard {{ ds.solved }}/{{ ds.total }} · {% if ds.total > 0 %}{{ '%.0f' | format(ds.solved / ds.total * 100) }}%{% else %}0%{% endif %}
{% endif %} {% endfor %}