| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 134655 | 李明秦 | 22破解密码 | C++ | Output Limit Exceeded | 1 MS | 272 KB | 380 | 2025-10-31 17:35:11 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ char a[101]={}; cin>>a; int n=strlen(a); for(int i=1;i=n;i+=3) cout<<a[i]; return 0; }