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 (
    10079, 10584, 10594, 12574, 10168, 10167, 
    12703, 15968, 15938, 10053, 10041, 
    9904, 9905, 15966, 15965, 9940
  ) 
  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.00038

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": 32,
          "filtered": 100,
          "index_condition": "cscart_product_prices.product_id in (10079,10584,10594,12574,10168,10167,12703,15968,15938,10053,10041,9904,9905,15966,15965,9940) and cscart_product_prices.usergroup_id in (0,1)",
          "attached_condition": "cscart_product_prices.lower_limit = 1"
        }
      }
    }
  }
}

Result

product_id price
9904 1849.73000000
9905 1849.73000000
9940 2142.00000000
10041 1849.73000000
10053 1955.00000000
10079 1660.30000000
10167 1849.73000000
10168 1849.73000000
10584 1660.30000000
10594 1660.30000000
12574 78181.27000000
12703 1849.73000000
15938 4889.00000000
15965 6424.00000000
15966 5975.00000000
15968 4889.00000000