原题
题目大意
我也不知道怎么说……
For example, if s=“bab” the process is: “b” → “baa” → “baabbb”. So the encrypted s=“bab” is “baabbb”.
就是这样
题目分析
比签到题还水的题,我也没什么好说的了(刚刚去瞄了一眼standing,没做出来的应该不是集训队的吧)
代码
#include<cstdio>
#include<cstring>
#include<string>
#include<iostream>using std::cin;
using std::string;
int main()
{string a;int n,i,j = 0;cin >> n >> a;for (i = 0;i < n;i += j){putchar(a[i]);j++;}return 0;
}
因为上两题的折磨,所以这次我直接上string了【雾