| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 130026 | 鲁博睿 | 求点积 | C++ | Wrong Answer | 1 MS | 268 KB | 240 | 2025-09-07 13:12:27 |
#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 j=1;j<=n;j++){ c=a[j]*b[j]; s+=c; } cout<<s<<endl; return 0; }
------Input------
7 6 57 59 87 37 85 85 24 51 86 80 70 52 52
------Answer-----
26515
------Your output-----
1047784321