Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
96955 任斌 22破解密码 C++ Accepted 1 MS 272 KB 186 2024-11-10 09:33:02

Tests(2/2):


Code:

#include<bits/stdc++.h> using namespace std; int main() { char a[101]; cin>>a; int l; l=strlen(a); for(int i=0;i<l;i+=3){ cout<<a[i]; } cout<<endl; return 0; }