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 (
    10905, 10907, 10917, 10918, 10920, 10921, 
    10923, 10924, 10927, 10933, 10943, 
    10946, 10950, 10952, 10955, 10956
  ) 
  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.00079

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.99243927,
      "index_condition": "cscart_product_prices.product_id in (10905,10907,10917,10918,10920,10921,10923,10924,10927,10933,10943,10946,10950,10952,10955,10956)",
      "attached_condition": "cscart_product_prices.lower_limit = 1 and cscart_product_prices.usergroup_id in (0,1)"
    }
  }
}

Result

product_id price
10905 298500.00000000
10907 54800.00000000
10917 893200.00000000
10918 90700.00000000
10920 800.00000000
10921 800.00000000
10923 140000.00000000
10924 3300.00000000
10927 0.00000000
10933 32600.00000000
10943 400.00000000
10946 494500.00000000
10950 1700.00000000
10952 20900.00000000
10955 20900.00000000
10956 446600.00000000