import json
with open('/tmp/final_scores.json') as f:
    data = json.load(f)
high_score = sum(1 for p in data["pairs"] if p["score"] >= 40)
print("Pairs with score >= 40:", high_score)
print("Total pairs:", data["evaluated"])
print("First pair:", data["pairs"][0])
print("Sample high score:", [p for p in data["pairs"] if p["score"] >= 40][0])
