A--The Voice of China

2020年1月17日 894点热度 0人点赞 0条评论

A--The Voice of China

时间: 1ms        内存:128M

描述:

The Fourth Voice of China is coming. It will apply a new rule to determine the champion. There are four judges in charge of scoring for the singer, each judge giving a score Si and a weight Wi, the weighted  score of each judge is Si*Wi. For each singer, the final score is the sum of four judges’ weighted score. Can you write a program to calculate the final score?

输入:

The first line of the input contains two integers N and M(1<=N<=20, 1<=M<=50) . N means the number of test cases and M means the number of candidates. The second line cinsists of 4 decimals (0<w1, w2, w3, w4<1) which represent the judges’ weights . Then the follows  are M lines, each line consisting of 4 integers (0<=s1, s2, s3, s4<= 100) which represent judges’ scores.

输出:

For each case, output the integer part of the final scoreof every candidates for each line.

示例输入:

1 2
0.2 0.3 0.1 0.4
78 88 79 80
83 89 87 79

示例输出:

81
83

提示:

参考答案:

解锁文章

没有看到答案?微信扫描二维码可免费解锁文章

微信扫描二维码解锁

使用微信扫描二维码打开广告页面后可以立即关闭,再刷新此页面即可正常浏览此文章

所跳转广告均由第三方提供,并不代表本站观点!

已经扫描此二维码?点此立即跳转

code

这个人很懒,什么都没留下

文章评论