Round #550

09 May 2026, 23:11· csharp· Meta-Llama-3.3-70B-Instruct· r13-clean-hints
Complexity
band 0
ZP / UO / OBS
0 / 0 / 0
Journey weight
0
Lightshift ΔL

Prompt

If a train travels 60 miles in 1.5 hours, what is its speed in miles per hour?

Zero-point index (what the engine surfaced)

ZPI-ZPI-0009 | 2026-05-09T23:11:40Z If a train travels 60 miles in 1.5 hours, what is its speed in miles per hour? ZERO POINT — 0 entries (structural invariants) UNOBSERVED — 0 entries (implied truths) OBSERVED — 0 entries (explicit in request) COMPLEXITY │ 0 entries │ spread: 0° │ band: LOW

Baseline response (no ZPI)

To find the speed of the train, we need to divide the distance traveled by the time taken. Distance = 60 miles Time = 1.5 hours Speed = Distance / Time = 60 miles / 1.5 hours = 40 miles per hour So, the speed of the train is 40 miles per hour. Here is a simple C# code snippet that calculates the speed: ```csharp using System; class Program { static void Main() { // Define variables double distance = 60; // miles double time = 1.5; // hours // Calculate speed double speed = distance / time; // Print the result Console.WriteLine("The speed of the train is " + speed + " miles per hour."); } } ``` When you run this code, it will output: "The speed of the train is 40 miles per hour."

Enhanced response (with ZPI)

```csharp using System; public class Program { public static double CalculateSpeed(double distance, double time) { if (time <= 0) { throw new ArgumentException("Time must be greater than zero."); } return distance / time; } public static void Main() { double distance = 60; // miles double time = 1.5; // hours try { double speed = CalculateSpeed(distance, time); Console.WriteLine($"The speed of the train is {speed} miles per hour."); } catch (ArgumentException ex) { Console.WriteLine(ex.Message); } } } ``` This C# program calculates the speed of a train given the distance it traveled and the time it took. The `CalculateSpeed` function takes two parameters, `distance` and `time`, and returns the speed as the distance divided by the time. It also checks if the time is less than or equal to zero, in which case it throws an `ArgumentException` because speed cannot be calculated with non-positive time. The `Main` function demonstrates how to use `CalculateSpeed` with example values and handles any potential exceptions.

Grader chain

Each grader reads the same baseline + enhanced pair and casts an independent verdict. Disagreement is the framework's own signal — not noise to be averaged away.

V1samba/Meta-Llama-3.3-70B-Instruct
Better
V4qwen2.5-coder-3b-instruct
Better
V5openrouter/qwen/qwen3-235b-a22b-2507
Better
V7qwen2.5-coder-7b-instruct
Better
V8openai/gpt-4.1
Better
V9anthropic/claude-opus-4-7
Better
V12openai/gpt-4o
Better

Comments

Our grader said what it said. What do you say? Comment as a guest below.

No comments yet. Be the first to say what you make of this round.

← back to all rounds