エネルギー管理士 問題集

{% if year_label %}

{{ year_label }}の親問題(大問)を選択してください

{% else %}

親問題(大問)を選択してください

{% endif %}
{% if year_stats %}
📊 年度統計
総問題数: {{ year_stats.total_questions }}問
{% if year_stats.question_stats %}
問題番号別: {% for stat in year_stats.question_stats %} {{ stat.question_number }}({{ stat.count }}) {%- if not loop.last %}, {% endif -%} {% endfor %}
{% endif %}
{% if year_stats.type_stats %}
📝 問題タイプ別
{% for stat in year_stats.type_stats %}
{{ stat.type }}: {{ stat.count }}問
{% endfor %}
{% endif %}
{% endif %}
{% for parent in parent_questions %}
親問題 {{ parent.question_number }}
ID: {{ parent.id }} | カテゴリ: {{ parent.category }} | 子問題数: {{ parent.sub_questions|length }} {% if year_label %}
{{ year_label }} - 親問題番号: {{ parent.question_number.split('_')[1] if '_' in parent.question_number else parent.question_number }} {% endif %}
{% endfor %}
← メイン選択に戻る