Round 257

Round UUID: dcf21764-a728-4115-b5b4-6f87a47fe5e9

Prompt:

Task: Label each entity as either "DoubleAgent" or "Loyal" using ONLY the two numeric fields provided.
Fields
  • SecretHandshakeQuality   (range 0–100, higher means better)
  • AccentThickness          (range 0–100, higher means heavier accent)

Apply the rules IN ORDER and stop as soon as one matches:
1. If AccentThickness ≥ 50                                        → Loyal
2. Else if SecretHandshakeQuality ≥ 82                            → DoubleAgent
3. Else if SecretHandshakeQuality ≥ 72 AND AccentThickness ≤ 38   → DoubleAgent
4. Else if SecretHandshakeQuality ≥ 65 AND AccentThickness ≤ 28   → DoubleAgent
5. Else if SecretHandshakeQuality ≥ 55 AND AccentThickness ≤ 22   → DoubleAgent
6. Otherwise                                                       → Loyal

Return exactly the single word "DoubleAgent" or "Loyal" with no extra text.