Problem7502--求加权平均数

7502: 求加权平均数

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

输入n,输入n个数字及其权重,求n个数字的加权平均数

Input

第一行:输入n(1<=n<=100)
第二行:输入n个数字(数字a为整数,满足1<=a<=100)
第三行:输入这n个数字的权重(权重w为整数,满足1<=w<=10)

Output

这n个数字的加权平均数(保留2位小数)

Sample 1 Input

5
1 2 3 4 5
5 4 3 2 1

Sample 1 Output

2.33

Source/Category

数学