Let's convert each binary number to decimal to compare them with 9467:
1. 10001011₂ = 1*2⁷ + 0*2⁶ + 0*2⁵ + 0*2⁴ + 1*2³ + 0*2² + 1*2¹ + 1*2⁰ = 128 + 0 + 0 + 0 + 8 + 0 + 2 + 1 = 139
2. 10011011₂ = 1*2⁷ + 0*2⁶ + 0*2⁵ + 1*2⁴ + 1*2³ + 0*2² + 1*2¹ + 1*2⁰ = 128 + 0 + 0 + 16 + 8 + 0 + 2 + 1 = 155
3. 1011000₂ = 1*2⁶ + 0*2⁵ + 1*2⁴ + 1*2³ + 0*2² + 0*2¹ + 0*2⁰ = 64 + 0 + 16 + 8 + 0 + 0 + 0 = 88
4. 10110100₂ = 1*2⁷ + 0*2⁶ + 1*2⁵ + 1*2⁴ + 0*2³ + 1*2² + 0*2¹ + 0*2⁰ = 128 + 0 + 32 + 16 + 0 + 4 + 0 + 0 = 180
None of these numbers are larger than 9467.
Ответ: 0