cf_332A - Down the Hatch!(水题)

水题一道,就是题目描述太坑了。。。

题意:对于每个序号为k*n+1的位置,若此位置前面三个字母是相同的,则答案加1.

代码如下:

#include <cstdio>
char str[4000005];
int main ()
{
    int n;
    scanf("%d",&n);
    getchar();
    gets(str);
    int ans = 0;
    for(int i = n; str[i]; i+=n)
    {
        if(str[i-1]==str[i-2]&&str[i-2]==str[i-3])
            ans++;
    }
    printf("%d\n",ans);
    return 0;
}


posted on 2013-07-26 08:18  Primo...  阅读(104)  评论(0编辑  收藏  举报