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 (
    25271, 25272, 25273, 25274, 25275, 25276, 
    25277, 25278, 25279, 25280, 25281, 
    25282, 25283, 25284, 25285, 25286
  ) 
  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.00027

JSON explain

{
  "query_block": {
    "select_id": 1,
    "table": {
      "table_name": "cscart_product_prices",
      "access_type": "range",
      "possible_keys": ["usergroup", "product_id", "lower_limit", "usergroup_id"],
      "key": "product_id",
      "key_length": "3",
      "used_key_parts": ["product_id"],
      "rows": 16,
      "filtered": 99.99243164,
      "index_condition": "cscart_product_prices.product_id in (25271,25272,25273,25274,25275,25276,25277,25278,25279,25280,25281,25282,25283,25284,25285,25286)",
      "attached_condition": "cscart_product_prices.lower_limit = 1 and cscart_product_prices.usergroup_id in (0,1)"
    }
  }
}

Result

product_id price
25271 0.00000000
25272 273500.00000000
25273 53500.00000000
25274 369600.00000000
25275 23000.00000000
25276 4158000.00000000
25277 4889500.00000000
25278 4400.00000000
25279 2100.00000000
25280 2700.00000000
25281 1300.00000000
25282 569800.00000000
25283 791600.00000000
25284 43900.00000000
25285 13000.00000000
25286 154200.00000000