Super quick trigger question

Given any triggers cause an automation to fire, is this:-

trigger:
  - platform: state
    entity_id:
      - input_boolean.ensuite_bathroom_trv_switch
      - input_boolean.main_bathroom_trv_switch
      - input_boolean.downstairs_bathroom_trv_switch

The same as this?:

trigger:
  - platform: state
    entity_id:
      - input_boolean.ensuite_bathroom_trv_switch
  - platform: state
    entity_id:
      - input_boolean.main_bathroom_trv_switch
  - platform: state
    entity_id:
      - input_boolean.downstairs_bathroom_trv_switch

I’m not sure because the first is 1 trigger with three ‘conditions’ (wrong word)
And the second is three separate triggers

They trigger identically. Separating them gives you the option to use the trigger id to choose your actions though.