Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
43987 刁泓烨 22破解密码 C++ Accepted 3 MS 264 KB 202 2023-01-30 16:39:01

Tests(2/2):


Code:

#include<iostream> #include<cstdio> #include<cstring> using namespace std; int main() { char a[500]; scanf("%s",a); int n=strlen(a); for(int i=0;i<n;i+=3){ cout<<a[i]; } return 0; }