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

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

既存企業2あなた)の生産量: {{ group.p3_unit_Y }} 個
既存企業1の生産量: {{ group.p2_unit_Y }} 個
参入企業1の生産量: {{ group.p1_unit }} 個
グループの総生産量(3社の生産量の合計): {{ group.total_units_EYY }} 個
市場価格: {{ Constants.total_capacity }} - {{ group.total_units_EYY }} = {% if group.unit_weight_EYY == 0 %} {{ group.unit_price_EYY }}{% else %} {{ group.unit_price_EYY }}{% endif %}
あなたの利益: {% if group.unit_weight_EYY == 0 %} 0 {% else %} {{ group.unit_price_EYY }}×{{ group.p3_unit_Y }}個 ={{ group.p3_payoff_EYY }}{% endif %}
あなたの獲得ポイント: {% if group.unit_weight_EYY == 0 %} 30(初期保有ポイント)+ 30 {% else %} 30(初期保有ポイント) + {{ group.p3_payoff_EYY }} = {{ group.p3_point_EYY }}{% endif %}
{% if group.unit_weight_EYY == 0 %}
3企業の総生産量が120を超えたため利益は 0 になりました。
{% endif %} {% next_button %} {% include Constants.instructions_template %} {% endblock %}