CF604A.Uncowed Forces

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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 xx , and Kevin submitted correctly at minute mm but made ww 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 100100 points for each successful hack, but gets decreased by 5050 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.

输入格式

The first line of the input contains five space-separated integers m1m_{1} , m2m_{2} , m3m_{3} , m4m_{4} , m5m_{5} , where mim_{i} ( 0<=mi<=1190<=m_{i}<=119 ) is the time of Kevin's last submission for problem ii . His last submission is always correct and gets accepted.

The second line contains five space-separated integers w1w_{1} , w2w_{2} , w3w_{3} , w4w_{4} , w5w_{5} , where wiw_{i} ( 0<=wi<=100<=w_{i}<=10 ) is Kevin's number of wrong submissions on problem ii .

The last line contains two space-separated integers hsh_{s} and huh_{u} ( 0<=hs,hu<=200<=h_{s},h_{u}<=20 ), denoting the Kevin's numbers of successful and unsuccessful hacks, respectively.

输出格式

Print a single integer, the value of Kevin's final score.

输入输出样例

  • 输入#1

    20 40 60 80 100
    0 1 2 3 4
    1 0
    

    输出#1

    4900
    
  • 输入#2

    119 119 119 119 119
    0 0 0 0 0
    10 0
    

    输出#2

    4930
    

说明/提示

In the second sample, Kevin takes 119119 minutes on all of the problems. Therefore, he gets of the points on each problem. So his score from solving problems is . Adding in 10100=100010·100=1000 points from hacks, his total score becomes 3930+1000=49303930+1000=4930 .

首页