| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144043 | 唐诗阳 | 22破解密码 | C++ | Accepted | 0 MS | 276 KB | 366 | 2026-01-18 16:12:51 |
#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[10000]; cin>>a; for(int i=0;i<=strlen(a)-1;i+=3){ cout<<a[i]; } return 0; }