diff --git a/mo/web/org_score.py b/mo/web/org_score.py
index cd07526d3b25c9bf08668d0bae7bc4840eaa3339..887af74234f8090ef37d8ac18c365a207368130a 100644
--- a/mo/web/org_score.py
+++ b/mo/web/org_score.py
@@ -277,6 +277,7 @@ def org_score(round_id: Optional[int] = None, hier_id: Optional[int] = None, ct_
             ctx=ctx,
             contest=contest, round=round, tasks=tasks,
             table=table, messages=messages, shared_places=score.shared_places,
+            need_exp = any(task.experiment for task in tasks),
             group_rounds=group_rounds,
             can_view_submits=ctx.rights.can_view_submits(),
             public=public,
diff --git a/mo/web/templates/org_score.html b/mo/web/templates/org_score.html
index 25c575922b7a51985c5a1e1ead85041f7626bbd2..5175736b70354a622166e896cec276dda36efdff 100644
--- a/mo/web/templates/org_score.html
+++ b/mo/web/templates/org_score.html
@@ -38,7 +38,7 @@ Výsledky {{ round.name|round_genitive|lower }}{% if public %} {{ round.year }}.
 <b>Vítězi</b> se stávají účastníci s alespoň <b>{{ master.score_winner_limit|decimal }} {{ master.score_winner_limit|inflected_by("bodem", "body", "body") }}</b>.
 {% endif %}
 {% if master.score_successful_limit is not none %}
-<b>Úspěšnými řešiteli</b> se stávají účastníci s alespoň <b>{{ master.score_successful_limit|decimal }} body</b>{% if round.tasks_successful_limit is not none %}, kteří úspěšně vyřešili alespoň <b>{{ round.tasks_successful_limit|inflected("úlohu", "úlohy", "úloh") }}</b>{% endif %}. {% if shared_places %}{{ shared_places }}{% endif %}
+<b>Úspěšnými řešiteli</b> se stávají účastníci s alespoň <b>{{ master.score_successful_limit|decimal }} body</b>{% if round.tasks_successful_limit is not none %}, kteří úspěšně vyřešili alespoň <b>{{ round.tasks_successful_limit|inflected("úlohu", "úlohy", "úloh") }}</b>{% if need_exp %} a odevzdali řešení experimentální úlohy{% endif %}{% endif %}. {% if shared_places %}{{ shared_places }}{% endif %}
 {% endif %}
 {% endif %}