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 (
    5326, 5316, 5344, 5356, 5359, 5400, 5103, 
    5339, 5350, 6245, 5313, 5399, 5349, 
    5352, 5358, 5201, 5307, 5348, 5337, 
    5338, 5572, 5297, 6253, 5202, 6241, 
    6207, 6220, 6243, 6553, 7516, 11255, 
    11277, 10956, 11280, 10412, 7514, 7521, 
    7515, 7519, 10954
  ) 
  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.00185

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "34.31"
    },
    "grouping_operation": {
      "using_filesort": false,
      "table": {
        "table_name": "cscart_product_prices",
        "access_type": "range",
        "possible_keys": [
          "usergroup",
          "product_id",
          "lower_limit",
          "usergroup_id"
        ],
        "key": "product_id",
        "used_key_parts": [
          "product_id"
        ],
        "key_length": "3",
        "rows_examined_per_scan": 54,
        "rows_produced_per_join": 10,
        "filtered": "19.99",
        "index_condition": "(`softwarepirmam_hewadelivard_cscart_4`.`cscart_product_prices`.`product_id` in (5326,5316,5344,5356,5359,5400,5103,5339,5350,6245,5313,5399,5349,5352,5358,5201,5307,5348,5337,5338,5572,5297,6253,5202,6241,6207,6220,6243,6553,7516,11255,11277,10956,11280,10412,7514,7521,7515,7519,10954))",
        "cost_info": {
          "read_cost": "33.23",
          "eval_cost": "1.08",
          "prefix_cost": "34.31",
          "data_read_per_join": "259"
        },
        "used_columns": [
          "product_id",
          "price",
          "percentage_discount",
          "lower_limit",
          "usergroup_id"
        ],
        "attached_condition": "((`softwarepirmam_hewadelivard_cscart_4`.`cscart_product_prices`.`lower_limit` = 1) and (`softwarepirmam_hewadelivard_cscart_4`.`cscart_product_prices`.`usergroup_id` in (0,1)))"
      }
    }
  }
}

Result

product_id price
5103 35000.00000000
5201 35000.00000000
5202 35000.00000000
5297 17000.00000000
5307 17000.00000000
5313 17000.00000000
5316 17000.00000000
5326 17000.00000000
5337 17000.00000000
5338 17000.00000000
5339 17000.00000000
5344 17000.00000000
5348 17000.00000000
5349 20000.00000000
5350 20000.00000000
5352 20000.00000000
5356 20000.00000000
5358 20000.00000000
5359 30000.00000000
5399 25000.00000000
5400 35000.00000000
5572 20000.00000000
6207 650000.00000000
6220 450000.00000000
6241 450000.00000000
6243 330000.00000000
6245 380000.00000000
6253 1300000.00000000
6553 79000.00000000
7514 705000.00000000
7515 220000.00000000
7516 174000.00000000
7519 105000.00000000
7521 180000.00000000
10412 0.00000000
10954 15000.00000000
10956 25000.00000000
11255 350000.00000000
11277 385000.00000000
11280 1500000.00000000