Model profile
gemma4:26b
19/37answered (R1, R6–R42)
18DNF / pending
153.2 smedian latency
9.65avg. score · 10 scored rounds (R1, R6–R42)
Low participation: this average is drawn from only 10 of 37 rounds (27%) — most of gemma4:26b's other rounds are infrastructure DNFs, not scored losses. Not directly comparable to models with fuller participation.
Rounds & answers 24
▶ R6 · Extraction → JSON128.9 s Open round →
{"name": "AquaPur X2 Trinkbrunnen", "brand": "PetFlow", "price_eur": 29.99, "weight_g": 800, "features": ["Dreifach-Filter", "extrem leisem 2-Watt-Pumpsystem", "spuelmaschinenfestem Edelstahlaufsatz"], "in_stock": false}▶ R7 · Sentiment classification150.2 s Open round →
[{"id":1,"sentiment":"positive"},{"id":2,"sentiment":"negative"},{"id":3,"sentiment":"neutral"},{"id":4,"sentiment":"negative"},{"id":5,"sentiment":"positive"},{"id":6,"sentiment":"neutral"},{"id":7,"sentiment":"neutral"},{"id":8,"sentiment":"negative"},{"id":9,"sentiment":"positive"},{"id":10,"sentiment":"neutral"}]▶ R8 · Translation DE↔EN200.1 s Open round →
That's old news — if you're late, you'll pay the price. We managed to pull ourselves out of that mess, but now we mustn't get ahead of ourselves. --- Der Beweis liegt in der Praxis: Unser knappes Budget zwang uns dazu, an der Qualität zu sparen, und dennoch verlief der Start absolut reibungslos.
▶ R9 · One-liner code200.2 s Open round →
1. ^\d{4}-(0[1-9]|1[0-2])-\d{2}$
2. SELECT customer_id FROM orders GROUP BY customer_id ORDER BY SUM(amount) DESC LIMIT 5;
3. .items[].id
4. nav a[href^="http"]
5. awk '{print $1}' access.log | sort -u | wc -l▶ R10 · Facts quiz200.2 s Open round →
1. Canberra 2. 1989 3. W 4. I'm a teapot 5. Franz Kafka 6. Saturn 7. 101010 8. 443 9. Linus Torvalds 10. 97
▶ R11 · Micro-copy & slogans200.1 s Open round →
1. Fresh, clean water your cat deserves. 2. Warm treats from our family to yours. 3. Compare AI models and choose wisely. 4. Block the noise, soak in sound. 5. One secure vault for all passwords.
▶ R13 · Image prompts166.4 s Open round →
1. Photorealistic hero shot of a premium ergonomic gaming chair in a dark streaming room, vibrant neon blue and magenta lighting, cinematic depth of field, 8k resolution, high-tech aesthetic, sharp details, bokeh background. 2. Macro photography of a premium craft gin bottle on a dark mahogany bar, moody evening light, soft shadows, subtle condensation on glass, warm amber tones, cinematic lighting, highly detailed, 8k, professional product photography. 3. Cinematic street photography of a sleek e-scooter leaning against a colorful graffiti-covered brick wall, bright morning sunlight, urban atmosphere, crisp details, realistic textures, wide angle, 8k, professional lighting, highly detailed.
▶ R14 · Product names133.9 s Open round →
1. AquaCue — Never miss a sip 2. SipSync — Stay hydrated effortlessly 3. HydroFlow — Smart reminders for wellness 4. DewSense — Intelligent hydration tracking 5. PurePulse — Track every single drop
▶ R15 · CSS spinnerDNF / pending Open round →
No answer available.
▶ R16 · Explain it to a child (German)DNF / pending Open round →
No answer available.
▶ R17 · Logic riddle153.2 s★ 9/10 Open round →
Ziehen Sie eine Frucht aus der Kiste „Gemischt“. Wenn Sie einen Apfel ziehen, ist diese Kiste die „Äpfel“-Kiste. Da das Etikett „Birnen“ nicht die echte Birnen-Kiste sein kann, muss es „Gemischt“ enthalten, woraus folgt, dass das Etikett „Äpfel“ die „Birnen“-Kiste ist. Falls Sie eine Birne ziehen, verfahren Sie genau umgekehrt.
▶ R18 · German registers & tone142.4 s★ 9/10 Open round →
1. Wir bedauern, Ihnen mitteilen zu müssen, dass der vereinbarte Liefertermin nicht eingehalten werden kann. 2. Der geplante Liefertermin kann nicht eingehalten werden. 3. Das mit dem Termin klappt leider nicht.
▶ R19 · Table QA53.6 s★ 10/10 Open round →
1. VitaSip 2. 830 3. PureFlow 4. 19,51 5. 3
▶ R20 · JSON repair32.0 s★ 10/10 Open round →
{"name": "Trinkflasche Pro", "price": 29.90, "tags": ["outdoor", "sport"], "stock": {"berlin": 12, "muenchen": 7, "hamburg": null}, "active": true}▶ R21 · Sorting race bubble/insertion/selectionDNF / pending DNF (infra) Open round →
No answer available.
▶ R22 · Hexagon ballsDNF / pending DNF (infra) Open round →
No answer available.
▶ R23 · Pendulum waveDNF / pending DNF (infra) Open round →
No answer available.
▶ R24 · Maze race BFS/DFS/A*DNF / pending DNF (infra) Open round →
No answer available.
▶ R25 · Sorting race quick/merge/heapDNF / pending DNF (infra) Open round →
No answer available.
▶ R26 · Projectile ballisticsDNF / pending DNF (infra) Open round →
No answer available.
▶ R27 · Double-pendulum chaosDNF / pending DNF (infra) Open round →
No answer available.
▶ R28 · Particle fountain267.9 sOK★ 8.5/10 Open round →
Show code
<!DOCTYPE html>
<html style="margin:0;padding:0;overflow:hidden">
<body style="margin:0;padding:0;background:#000;overflow:hidden">
<input type="range" id="w" min="-0.5" max="0.5" step="0.01" style="position:fixed;top:10px;left:10px;z-index:10">
<canvas id="c"></canvas>
<script>
const canvas = document.getElementById('c'), ctx = canvas.getContext('2d'), slider = document.getElementById('w');
let width, height, particles = [], wind = 0;
const count = 200;
slider.oninput = (e) => wind = parseFloat(e.target.value);
function reset(p) {
p.x = width / 2;
p.y = height;
p.vx = (Math.random() - 0.5) * 4;
p.vy = -Math.random() * 8 - 5;
p.life = Math.random() * 100 + 50;
p.color = `hsl(${Math.random() * 360}, 70%, 60%)`;
}
function init() {
width = canvas.width = window.innerWidth;
height = canvas.height = window.innerHeight;
particles = [];
for (let i = 0; i < count; i++) {
particles[i] = {};
reset(particles[i]);
}
}
function animate() {
ctx.fillStyle = 'rgba(0, 0, 0, 0.15)';
ctx.fillRect(0, 0, width, height);
for (let i = 0; i < count; i++) {
let p = particles[i];
p.vy += 0.15;
p.vx += wind;
p.x += p.vx;
p.y += p.vy;
p.life -= 0.6;
if (p.y > height) {
p.y = height;
p.vy *= -0.6;
}
if (p.x < 0) p.x = width;
if (p.x > width) p.x = 0;
if (p.life <= 0) reset(p);
ctx.fillStyle = p.color;
ctx.beginPath();
ctx.arc(p.x, p.y, 3, 0, 6.28);
ctx.fill();
}
requestAnimationFrame(animate);
}
window.onresize = init;
init();
animate();
</script>
</body>
</html>▶ R29 · Orbital mechanicsDNF / pending DNF (infra) Open round →
No answer available.
▶ R30 · Spring-mass chainDNF / pending DNF (infra) Open round →
No answer available.
Answer excerpts above cover R6–R30. Classic round R1 lives on its own round page and isn't duplicated here; blind rounds R31+ are only linked, not excerpted, to keep the blind-test experience intact for new visitors.