SELECT 
  q_product_prices.product_id, 
  MIN(
    IF(
      q_product_prices.percentage_discount = 0, 
      q_product_prices.price, 
      q_product_prices.price - (
        q_product_prices.price * q_product_prices.percentage_discount
      )/ 100
    )
  ) AS price 
FROM 
  q_product_prices 
WHERE 
  q_product_prices.product_id IN (
    553, 554, 555, 556, 557, 558, 559, 560, 
    561, 562, 563, 564, 515, 516, 517, 518, 
    519, 520, 521, 522, 523, 524, 525, 526, 
    527, 528, 529, 530, 531, 532
  ) 
  AND q_product_prices.lower_limit = 1 
  AND q_product_prices.usergroup_id IN (0, 1) 
GROUP BY 
  q_product_prices.product_id

Query time 0.00098

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "72.01"
    },
    "grouping_operation": {
      "using_filesort": false,
      "table": {
        "table_name": "q_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": 30,
        "rows_produced_per_join": 5,
        "filtered": "19.99",
        "index_condition": "(`portal`.`q_product_prices`.`product_id` in (553,554,555,556,557,558,559,560,561,562,563,564,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532))",
        "cost_info": {
          "read_cost": "70.81",
          "eval_cost": "1.20",
          "prefix_cost": "72.01",
          "data_read_per_join": "143"
        },
        "used_columns": [
          "product_id",
          "price",
          "percentage_discount",
          "lower_limit",
          "usergroup_id"
        ],
        "attached_condition": "((`portal`.`q_product_prices`.`lower_limit` = 1) and (`portal`.`q_product_prices`.`usergroup_id` in (0,1)))"
      }
    }
  }
}

Result

product_id price
515 186.000000
516 299.000000
517 219.000000
518 249.000000
519 355.000000
520 150.000000
521 199.000000
522 225.000000
523 199.000000
524 199.000000
525 205.000000
526 139.000000
527 179.000000
528 259.000000
529 219.000000
530 315.000000
531 225.000000
532 219.000000
553 99.000000
554 175.000000
555 115.000000
556 119.000000
557 149.000000
558 139.000000
559 405.000000
560 135.000000
561 145.000000
562 29.000000
563 29.000000
564 29.000000