比赛 CSP2023-J模拟赛 评测结果 AAAAA
题目名称 挂分跑步 最终得分 100
用户昵称 darkMoon 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2023-10-18 17:14:24
显示代码纯文本
#include<bits/stdc++.h>
#define int long long
using namespace std;
auto read = [](){
	int x;
	scanf("%lld", &x);
	return x;
};
int ans = 0;
signed main(){
	freopen("running.in", "r", stdin);
	freopen("running.out", "w", stdout);
	int n = read(), x = read(), a[1005], b[1005];
	for(int i = 1; i <= n; i ++)
	a[i] = read();
	for(int i = 1; i <= n; i ++)
	b[i] = read();
	for(int i = 1; i <= n; i ++){
		ans += x * (a[i] - b[i]);
		if(ans > 10000){
			printf("2 hard 4 me");
			return 0;
		}
	}
	printf("%lld", ans);
	return 0;
}