| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 73448 | sh25_shenpy | 向量点积计算 | C++ | 编译错误 | 0 MS | 0 KB | 237 | 2025-11-09 20:18:53 |
#include <bits/stdc++.h> using namespace std; int main( ) { int n,x=0; string s,t; cin>>n; cin>>s; cin>>t; for(int i=0;i<n;i++) { x+=s[0]; x+=t[0]; } cout<<x: return 0; }