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

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

既存企業2(あなた)の生産量: {{ group.p3_unit_NE }} 個
既存企業1の生産量: {{ group.p2_unit_NE }} 個
参入企業1 参入しませんでした。
グループの総生産量(2社の生産量の合計): {{ group.total_units_NE }} 個
市場価格: {{ Constants.total_capacity }} - {{ group.total_units_NE }} = {% if group.unit_weight_NE == 0 %} {{ group.unit_price_NE }}{% else %} {{ group.unit_price_NE }}{% endif %}
あなたの利益: {% if group.unit_weight_NE == 0 %} 0 {% else %} {{ group.unit_price_NE }}×{{ group.p3_unit_NE }}個 ={{ group.p3_payoff_NE }}{% endif %}
あなたの獲得ポイント: {% if group.unit_weight_NE == 0 %} 30(参加ポイント)+ 30 {% else %} 30(参加ポイント) + {{ group.p3_payoff_NE }} = {{ group.p3_point_NE }}{% endif %}
{% if group.unit_weight_NE == 0 %}
2企業の総生産量が120を超えたため利益は 0 になりました。
{% endif %} {% next_button %} {% include Constants.instructions_template %} {% endblock %}