Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
119774 | 罗子童 | 22破解密码 | C++ | Wrong Answer | 1 MS | 268 KB | 413 | 2025-05-18 19:14:45 |
#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 n[51]; for(int i=0;i<51;i++){ cin>>n[i]; } for(int i=0;i<51;i+=3){ cout<<n[i]; } return 0; }
------Input------
1234516751675615735173514
------Answer-----
146155534
------Your output-----
146155534