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 (
    427, 319, 692, 320, 531, 643, 322, 325, 
    326, 410, 327, 323, 324, 328
  ) 
  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.00056

JSON explain

{
  "query_block": {
    "select_id": 1,
    "filesort": {
      "sort_key": "cscart_product_prices.product_id",
      "temporary_table": {
        "table": {
          "table_name": "cscart_product_prices",
          "access_type": "range",
          "possible_keys": [
            "usergroup",
            "product_id",
            "lower_limit",
            "usergroup_id"
          ],
          "key": "usergroup_id",
          "key_length": "6",
          "used_key_parts": ["usergroup_id", "product_id"],
          "rows": 28,
          "filtered": 100,
          "index_condition": "cscart_product_prices.product_id in (427,319,692,320,531,643,322,325,326,410,327,323,324,328) and cscart_product_prices.usergroup_id in (0,1)",
          "attached_condition": "cscart_product_prices.lower_limit = 1"
        }
      }
    }
  }
}

Result

product_id price
319 11880.00000000
320 12630.00000000
322 6610.00000000
323 7830.00000000
324 8300.00000000
325 5850.00000000
326 6700.00000000
327 6700.00000000
328 12910.00000000
410 6700.00000000
427 12250.00000000
531 12250.00000000
643 18840.00000000
692 13200.00000000