比赛 CSP2023-J模拟赛 评测结果 AWWEE
题目名称 挂分跑步 最终得分 20
用户昵称 wxs 运行时间 0.423 s
代码语言 C++ 内存使用 2.29 MiB
提交时间 2023-10-18 19:32:34
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int a[110],b[110];
int main()
{
    freopen("running.in","r",stdin);
    freopen("running.out","w",stdout);
    
    int n,x,s=0;
    cin>>n>>x;
    for(int i=0;i<n;i++) cin>>a[i];
    for(int i=0;i<n;i++) cin>>b[i];
    for(int i=0;i<n;i++){
        s+=(a[i]-b[i])*x;
    }
    if(s>=10000) cout<<"2 hard 4 me"<<endl;
    else cout<<s<<endl;
    return 0;
}