A10110 | Uncowed Forces
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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 $m$ but 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.
Codeforces scores are computed as follows: If the maximum point value of a problem is $x$ , and Kevin submitted correctly at minute $m$ but 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.
输入格式
The first line of the input contains five space-separated integers $m_{1}$ , $m_{2}$ , $m_{3}$ , $m_{4}$ , $m_{5}$ , where $m_{i}$ ( $0<=m_{i}<=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 $w_{1}$ , $w_{2}$ , $w_{3}$ , $w_{4}$ , $w_{5}$ , where $w_{i}$ ( $0<=w_{i}<=10$ ) is Kevin's number of wrong submissions on problem $i$ .
The last line contains two space-separated integers $h_{s}$ and $h_{u}$ ( $0<=h_{s},h_{u}<=20$ ), denoting the Kevin's numbers of successful and unsuccessful hacks, respectively.
The second line contains five space-separated integers $w_{1}$ , $w_{2}$ , $w_{3}$ , $w_{4}$ , $w_{5}$ , where $w_{i}$ ( $0<=w_{i}<=10$ ) is Kevin's number of wrong submissions on problem $i$ .
The last line contains two space-separated integers $h_{s}$ and $h_{u}$ ( $0<=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 $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$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted