2898: Relic Discovery

内存限制:128 MB 时间限制:1.000 S
评测方式:文本比较 命题人:
提交:9 解决:7

题目描述

Recently, paleoanthropologists have found historical remains on an island in the Atlantic Ocean. The most inspiring thing is that they excavated in a magnificent cave and found that it was a huge tomb. Inside the construction, researchers identified a large number of skeletons, and funeral objects including stone axe, livestock bones and murals. Now, all items have been sorted, and they can be divided into N types. After they were checked attentively, you are told that there are A i items of the i-th type. Further more, each item of the i-th type requires B i million dollars for transportation, analysis, and preservation averagely. As your job, you need to calculate the total expenditure.

输入

The first line of input contains an integer T which is the number of test cases. For each test case, the first line contains an integer N which is the number of types. In the next N lines, the i-th line contains two numbers A i and B i as described above. All numbers are positive integers and less than 101.

输出

For each case, output one integer, the total expenditure in million dollars.

样例输入 复制

1
2
1 2
3 4

样例输出 复制

14

提示