a column containing multiple patterns perl

If U have a question
if a file is 
33 ABC 276  LRR pir  UJU
45  BCD 777  HIGH pred IJJ
67  BGH  66  LRR_1 prcc KIK
77  GYH  88   LOW pol KKK
perl -lne '$a++ if /LRR/,/LOW/, /HIGH/; END {print $a+0}'
 

Post desired output for this sample data.