| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 73448 | sh25_shenpy | 向量点积计算 | C++ | Compile Error | 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; }