| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 150681 | 张暄浩 | 22破解密码 | C++ | Accepted | 1 MS | 276 KB | 296 | 2026-03-29 17:24:42 |
#include<iostream> #include<cstdio> #include<cstring> #include<cmath> using namespace std; int main(){ int n,len; char str[1000]={0}; cin>>str; len=strlen(str); for(int i=0;i<len;i+=3){ cout<<str[i]; } cout<<endl; return 0; }