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 (
    515, 514, 513, 512, 511, 510, 509, 508, 
    507, 506, 505, 504, 503, 502, 501, 499, 
    500, 498, 497, 496, 495, 494, 493, 492, 
    491, 490, 489, 488, 487, 486, 485, 484, 
    483, 482, 481, 480, 479, 478, 477, 476, 
    475, 474, 473, 472, 471, 470, 469, 468
  ) 
  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.00073

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "173.31"
    },
    "grouping_operation": {
      "using_temporary_table": true,
      "using_filesort": true,
      "cost_info": {
        "sort_cost": "96.00"
      },
      "table": {
        "table_name": "cscart_product_prices",
        "access_type": "ALL",
        "possible_keys": [
          "usergroup",
          "product_id",
          "lower_limit",
          "usergroup_id"
        ],
        "rows_examined_per_scan": 368,
        "rows_produced_per_join": 95,
        "filtered": "26.09",
        "cost_info": {
          "read_cost": "58.11",
          "eval_cost": "19.20",
          "prefix_cost": "77.31",
          "data_read_per_join": "2K"
        },
        "used_columns": [
          "product_id",
          "price",
          "percentage_discount",
          "lower_limit",
          "usergroup_id"
        ],
        "attached_condition": "((`danishecarter_latest`.`cscart_product_prices`.`lower_limit` = 1) and (`danishecarter_latest`.`cscart_product_prices`.`product_id` in (515,514,513,512,511,510,509,508,507,506,505,504,503,502,501,499,500,498,497,496,495,494,493,492,491,490,489,488,487,486,485,484,483,482,481,480,479,478,477,476,475,474,473,472,471,470,469,468)) and (`danishecarter_latest`.`cscart_product_prices`.`usergroup_id` in (0,1)))"
      }
    }
  }
}

Result

product_id price
468 7600.00000000
469 36700.00000000
470 27200.00000000
471 52000.00000000
472 4800.00000000
473 22400.00000000
474 22400.00000000
475 41900.00000000
476 10000.00000000
477 23200.00000000
478 23200.00000000
479 22000.00000000
480 22000.00000000
481 28000.00000000
482 28000.00000000
483 28000.00000000
484 6500.00000000
485 7500.00000000
486 22400.00000000
487 4000.00000000
488 4000.00000000
489 22400.00000000
490 20000.00000000
491 20000.00000000
492 12800.00000000
493 13880.00000000
494 23100.84000000
495 66072.96000000
496 0.00000000
497 0.00000000
498 0.00000000
499 0.00000000
500 0.00000000
501 0.00000000
502 0.00000000
503 2950.00000000
504 0.00000000
505 0.00000000
506 0.00000000
507 69900.00000000
508 0.00000000
509 0.00000000
510 0.00000000
511 0.00000000
512 0.00000000
513 5750.00000000
514 0.00000000
515 4500.00000000