{% extends "global/Page.html" %} {% load otree %} {% block title %} 実験結果(ENN) {% endblock %} {% block content %}

このラウンドの結果は以下のようになりました。

既存企業2(あなた)の生産量: {{ group.p3_unit_N }} 個
既存企業1の生産量: {{ group.p2_unit_N }} 個
参入企業1の生産量: {{ group.p1_unit }} 個
グループの総生産量(3社の生産量の合計): {{ group.total_units_ENN }} 個
市場価格: {{ Constants.total_capacity }} - {{ group.total_units_ENN }} = {% if group.unit_weight_ENN == 0 %} {{ group.unit_price_ENN }}{% else %} {{ group.unit_price_ENN }}{% endif %}
あなたの利益: {% if group.unit_weight_ENN == 0 %} 0 {% else %} {{ group.unit_price_ENN }}×{{ group.p3_unit_N }}個 ={{ group.p3_payoff_ENN }}{% endif %}
あなたの獲得ポイント: {% if group.unit_weight_ENN == 0 %} 30(参加ポイント)+ 30 {% else %} 30(参加ポイント) + {{ group.p3_payoff_ENN }} = {{ group.p3_point_ENN }}{% endif %}
{% if group.unit_weight_ENN == 0 %}
3企業の総生産量が120を超えたため利益は 0 になりました。
{% endif %} {% next_button %} {% include Constants.instructions_template %} {% endblock %}