Description
Kevin Sun has just finished competing in Codeforces Round #334! The round was 120 minutes long and featured five problems with maximum point values of 500, 1000, 1500, 2000, and 2500, respectively. Despite the challenging tasks, Kevin was uncowed and bulldozed through all of them, distinguishing himself from the herd as the best cowmputer scientist in all of Bovinia. Kevin knows his submission time for each problem, the number of wrong submissions that he made on each problem, and his total numbers of successful and unsuccessful hacks. Because Codeforces scoring is complicated, Kevin wants you to write a program to compute his final score.
Codeforces scores are computed as follows: If the maximum point value of a problem is x, and Kevin submitted correctly at minute mbut made w wrong submissions, then his score on that problem is . His total score is equal to the sum of his scores for each problem. In addition, Kevin's total score gets increased by 100 points for each successful hack, but gets decreased by 50 points for each unsuccessful hack.
All arithmetic operations are performed with absolute precision and no rounding. It is guaranteed that Kevin's final score is an integer.
Input
The first line of the input contains five space-separated integers m1, m2, m3, m4, m5, where mi (0 ≤ mi ≤ 119) is the time of Kevin's last submission for problem i. His last submission is always correct and gets accepted.
The second line contains five space-separated integers w1, w2, w3, w4, w5, where wi (0 ≤ wi ≤ 10) is Kevin's number of wrong submissions on problem i.
The last line contains two space-separated integers hs and hu (0 ≤ hs, hu ≤ 20), denoting the Kevin's numbers of successful and unsuccessful hacks, respectively.
Output
Print a single integer, the value of Kevin's final score.
Sample Input
20 40 60 80 100 0 1 2 3 4 1 0
4900
119 119 119 119 119 0 0 0 0 0 10 0
4930
Hint
In the second sample, Kevin takes 119 minutes on all of the problems. Therefore, he gets of the points on each problem. So his score from solving problems is
. Adding in 10·100 = 1000 points from hacks, his total score becomes 3930 + 1000 = 4930.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#include<stdio.h>
#include<algorithm>注意数据类型为double
using namespace std;
int main()
{
double c[5]={500, 1000, 1500, 2000,2500},a[5],sum,b[5];
__int64 n,m;
for(int i=0;i<5;i++)
scanf("%lf",&a[i]);
for(int i=0;i<5;i++)
scanf("%lf",&b[i]);
scanf("%I64d%I64d",&n,&m);
for(int i=0;i<5;i++)
sum+=max(0.3*c[i],(1-a[i]/250)*c[i]-50*b[i]);
sum+=100*n-50*m;
printf("%.0lf\n",sum);
return 0;
}

本文介绍了一种计算Codeforces编程比赛最终得分的方法,包括正确解答题目、错误提交次数及成功和失败Hack对总分的影响。
407

被折叠的 条评论
为什么被折叠?



