SELECT 
  cscart_product_prices.product_id, 
  MIN(
    IF(
      cscart_product_prices.percentage_discount = 0, 
      cscart_product_prices.price, 
      cscart_product_prices.price - (
        cscart_product_prices.price * cscart_product_prices.percentage_discount
      )/ 100
    )
  ) AS price 
FROM 
  cscart_product_prices 
WHERE 
  cscart_product_prices.product_id IN (
    254299, 252159, 254297, 253161, 253157, 
    254305, 252161, 262442, 252162, 149755, 
    149820, 151903, 265039, 265041, 151897, 
    265037, 265040, 265036, 265042
  ) 
  AND cscart_product_prices.lower_limit = 1 
  AND cscart_product_prices.usergroup_id IN (0, 1) 
GROUP BY 
  cscart_product_prices.product_id

Query time 0.00342

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "53.27"
    },
    "grouping_operation": {
      "using_filesort": false,
      "table": {
        "table_name": "cscart_product_prices",
        "access_type": "range",
        "possible_keys": [
          "usergroup",
          "product_id",
          "lower_limit",
          "usergroup_id"
        ],
        "key": "usergroup",
        "used_key_parts": [
          "product_id",
          "usergroup_id",
          "lower_limit"
        ],
        "key_length": "9",
        "rows_examined_per_scan": 38,
        "rows_produced_per_join": 38,
        "filtered": "100.00",
        "cost_info": {
          "read_cost": "45.67",
          "eval_cost": "7.60",
          "prefix_cost": "53.27",
          "data_read_per_join": "2K"
        },
        "used_columns": [
          "product_id",
          "price",
          "percentage_discount",
          "lower_limit",
          "usergroup_id"
        ],
        "attached_condition": "((`webmarco`.`cscart_product_prices`.`lower_limit` = 1) and (`webmarco`.`cscart_product_prices`.`product_id` in (254299,252159,254297,253161,253157,254305,252161,262442,252162,149755,149820,151903,265039,265041,151897,265037,265040,265036,265042)) and (`webmarco`.`cscart_product_prices`.`usergroup_id` in (0,1)))"
      }
    }
  }
}

Result

product_id price
149755 0.00000000
149820 0.00000000
151897 0.00000000
151903 0.00000000
252159 0.00000000
252161 0.00000000
252162 0.00000000
253157 0.00000000
253161 0.00000000
254297 0.00000000
254299 0.00000000
254305 0.00000000
262442 0.00000000
265036 0.00000000
265037 0.00000000
265039 0.00000000
265040 0.00000000
265041 0.00000000
265042 0.00000000