CF1260A.Heating
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Several days ago you bought a new house and now you are planning to start a renovation. Since winters in your region can be very cold you need to decide how to heat rooms in your house.
Your house has n rooms. In the i -th room you can install at most ci heating radiators. Each radiator can have several sections, but the cost of the radiator with k sections is equal to k2 burles.
Since rooms can have different sizes, you calculated that you need at least sumi sections in total in the i -th room.
For each room calculate the minimum cost to install at most ci radiators with total number of sections not less than sumi .
输入格式
The first line contains single integer n ( 1≤n≤1000 ) — the number of rooms.
Each of the next n lines contains the description of some room. The i -th line contains two integers ci and sumi ( 1≤ci,sumi≤104 ) — the maximum number of radiators and the minimum total number of sections in the i -th room, respectively.
输出格式
For each room print one integer — the minimum possible cost to install at most ci radiators with total number of sections not less than sumi .
输入输出样例
输入#1
4 1 10000 10000 1 2 6 4 6
输出#1
100000000 1 18 10
说明/提示
In the first room, you can install only one radiator, so it's optimal to use the radiator with sum1 sections. The cost of the radiator is equal to (104)2=108 .
In the second room, you can install up to 104 radiators, but since you need only one section in total, it's optimal to buy one radiator with one section.
In the third room, there 7 variants to install radiators: [6,0] , [5,1] , [4,2] , [3,3] , [2,4] , [1,5] , [0,6] . The optimal variant is [3,3] and it costs 32+32=18 .