Perket
"Perket" is a widely known and delicious meal. For perket to be what it ,cooks must carefully choose the ingredients to get the fullest taste possible while keeping the meal traditional.
You have N ingredients at your disposal. For each we know its sourness S and bitterness B. When using multiple ingredients, the total sourness is the product of sourness amounts of all ingredients, while the total bitterness is the sum of bitterness amounts of all ingredients.
As everyone knows, perket is supposed to be neither sour nor bitter; we want to choose the ingredients so that the absolute difference between sourness and bitterness is the smallest.
Also, it is necessary to use at least one ingredient; you can't serve water as the main course.
Each of the next N lines contains two integers separated by a space, the sourness and bitterness of each ingredient.
The input data will be such that, if we make a meal with all ingredients, both the sourness and bitterness will be less than 1 000 000 000.
1
3 10Output:
72
3 8
5 8Output:
14
1 7
2 6
3 8
4 9Output:
1In the third example, we choose the last three ingredients. The total sourness is then 2·3·4=24 and bitterness is 6+8+9=23. The difference is 1.
Submit solution
Coming laterThe grading service will be connected in a later migration step. You can inspect the task and your previous results now.