| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 136958 | 刘益梵 | 字符串替换 | Python3 | Compile Error | 0 MS | 0 KB | 187 | 2025-11-15 17:05:04 |
#include<bits/stdc++.h> using namespace std; int main(){ string s1,s2; cin>>s1>>s2; int len = s1.size(); for(int i=0;i<len;i++){ cout<<s2[s1[i]-'a']; } return 0; }
File "Main.py", line 2
using namespace std;
^
SyntaxError: invalid syntax