| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 130027 | 鲁博睿 | 求点积 | C++ | Accepted | 1 MS | 272 KB | 283 | 2025-09-07 13:12:46 |
#include<iostream> using namespace std; int main(){ int n,c=1,m,x; int s=0; cin>>n; int a[n],b[n]; for(int m=1;m<=n;m++){ cin>>a[m]; } for(int x=1;x<=n;x++){ cin>>b[x]; } for(int j=1;j<=n;j++){ c=a[j]*b[j]; s+=c; } cout<<s<<endl; return 0; }