比赛 CSP2023-J模拟赛 评测结果 AAAAW
题目名称 挂分跑步 最终得分 80
用户昵称 llhy 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2023-10-18 17:26:14
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
const int N=1010;
int a[N],b[N];
int main(){
	freopen("running.in","r",stdin);
	freopen("running.out","w",stdout);
	int n,x;
	long long ans=0;
	cin>>n>>x;
	for(int i=1;i<=n;i++)cin>>a[i];
	for(int i=1;i<=n;i++)cin>>b[i];
	for(int i=1;i<=n;i++){
		ans+=(a[i]-b[i])*x;
	}
	cout<<ans<<endl;
	fclose(stdin);
	fclose(stdout);
	return 0;
}