首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >【CodeForces】604A - Uncowed Forces(水)

【CodeForces】604A - Uncowed Forces(水)

作者头像
FishWang
发布2025-08-26 15:28:53
发布2025-08-26 15:28:53
7000
代码可运行
举报
运行总次数:0
代码可运行

点击打开题目

A. Uncowed Forces

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

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.

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.

Examples

input

代码语言:javascript
代码运行次数:0
运行
复制
20 40 60 80 100
0 1 2 3 4
1 0

output

代码语言:javascript
代码运行次数:0
运行
复制
4900

input

代码语言:javascript
代码运行次数:0
运行
复制
119 119 119 119 119
0 0 0 0 0
10 0

output

代码语言:javascript
代码运行次数:0
运行
复制
4930

Note

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 = 1000points from hacks, his total score becomes 3930 + 1000 = 4930.

看懂题就行了,很明显的代公式。

代码如下:

代码语言:javascript
代码运行次数:0
运行
复制
#include <cstdio>
#include <algorithm>
using namespace std;
int main()
{
	int m[5];
	int w[5];
	int p,q;
	for (int i = 0 ; i < 5 ; i++)
		scanf ("%d",&m[i]);
	for (int i = 0 ; i < 5 ; i++)
		scanf ("%d",&w[i]);
	scanf ("%d%d",&p,&q);
	double ans = 0;
	for (int i = 0 ; i < 5 ; i++)
	{
		double x = 500.0 * (i+1);
		ans += max (0.3 * x , (1 - (double)m[i] / 250.0) * x - 50 * (double)w[i]);
	}
	ans = ans + 100 * p - 50 * q;
	printf ("%.lf\n",ans);
	return 0;
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2025-08-26,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档