Passengers per 5min
passengers_per_5min
Passengers transported in five minutes
Scores if within ±3% of the reference value.
Calculates the five-minute handling capacity of a lift group from building population, round-trip time, car capacity, number of lifts, and car loading factor. The reduced method reports passengers carried in five minutes and capacity as a percentage of population.
with-tool: The model is given an executable Python calculator script.
Standards
One template produces many comparable benchmark tasks while keeping the scoring contract fixed.
01
The reusable contract shown on this page.
02
An archetype and site context are sampled.
03
Inputs may be hidden at harder tiers.
04
The model responds with the declared outputs.
Inputs the model receives, and the outputs it is scored on.
5 inputs
Included directly in every task prompt.
Building population
building_population
Population served by the lift group
Round trip time
round_trip_time_s
Lift round-trip time
Car capacity persons
car_capacity_persons
Rated lift car capacity in persons
Lift count
lift_count
Number of lifts in the group
Visible in easier tasks and withheld in one or more harder tiers.
Car loading factor pct
car_loading_factor_pct
Effective car loading factor
Hidden at hard difficulty.
2 outputs
passengers_per_5min
Passengers transported in five minutes
Scores if within ±3% of the reference value.
handling_capacity_pct
Five-minute handling capacity as population percentage
Scores if within ±3% of the reference value.
Each template is sampled at three tiers. Harder tiers may hide inputs, forcing the model to infer them from the scenario description.
All inputs given
Residential group with all inputs visible
All inputs given
Residential or office lift group
Some inputs hidden
Loading factor hidden in traffic design context
Hidden inputs
Prompt replacement text
Use the car loading factor implied by {{ archetype.description }}.
Car loading factor pct restricted to: 80
The exact instruction and parameter contract used to generate this task, pinned to the published library source.
/workspace
Teal lines show Jinja input conditions, not task visibility policy. A line renders only when that input or tool is visible.
1You are a senior vertical transportation engineer calculating lift handling capacity.2 3## Given4 5| Parameter | Value | Unit |6|-----------|-------|------|7| Building population | {{ building_population }} | persons |8| Round-trip time | {{ round_trip_time_s }} | s |9| Car capacity | {{ car_capacity_persons }} | persons |10| Number of lifts | {{ lift_count }} | count |11{% if car_loading_factor_pct is defined %}12| Car loading factor | {{ car_loading_factor_pct }} | % |13{% endif %}14 15## Constraints16 17- Loaded car capacity equals rated car capacity times loading factor.18- Passengers per five minutes equals `300 x lift_count x loaded_capacity / RTT`.19- Handling capacity percentage equals passengers per five minutes divided by population.20 21## Output Format22 23Include a JSON block with exactly these keys:24 25```json26{27 "passengers_per_5min": <numeric_value>,28 "handling_capacity_pct": <numeric_value>29}30```31 32Write your complete solution to `/workspace/output.md`.33 Each generated task is drawn from one of these realistic scenario bands.
Site contexts ground each scenario in a real locale the model can use to infer hidden values.
residential_group
Residential lift group
office_group
Commercial office lift group
office-tower-office-group-preview — hard difficulty, some inputs hidden.
Commercial office lift group. office-tower. Required outputs: passengers_per_5min, handling_capacity_pct
Scenario context and visible inputs.
Executable tool: handling-capacity_calc.py
Inputs withheld at this difficulty.
Car loading factor pct
car_loading_factor_pct
Stand-in text in the prompt
Use the car loading factor implied by {{ archetype.description }}.
The scored JSON answer schema.
{
"passengers_per_5min": <number>,
"handling_capacity_pct": <number>
}