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 (
    1949, 1924, 1947, 1906, 1946, 1945, 1944, 
    1943, 1939, 1927, 1942, 1900
  ) 
  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.00098

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": 24,
          "filtered": 100,
          "index_condition": "cscart_product_prices.product_id in (1949,1924,1947,1906,1946,1945,1944,1943,1939,1927,1942,1900) and cscart_product_prices.usergroup_id in (0,1)",
          "attached_condition": "cscart_product_prices.lower_limit = 1"
        }
      }
    }
  }
}

Result

product_id price
1900 30000.00000000
1906 58000.00000000
1924 98000.00000000
1927 0.00000000
1939 44000.00000000
1942 30000.00000000
1943 44000.00000000
1944 30000.00000000
1945 70000.00000000
1946 23500.00000000
1947 100000.00000000
1949 145000.00000000