[ZJ]b524: 先別管這個了,你聽過yee嗎?

題目:
http://zerojudge.tw/ShowProblem?problemid=b524
-----------------------------------------------------------------------------------------------------------------------

#include<bits/stdc++.h>
#define maxn 100000
using namespace std;
int main()
{
char yee[maxn];
while(scanf("%s",&yee)!=EOF)
{
int sum=0,a=0;
for(int i=0;yee[i]!=0;i++)
{

if(yee[i]=='y')
{
sum += abs(i-a);
a+=3;
}
}
printf("%d\n",sum);
}
return 0;
}

留言

這個網誌中的熱門文章

[ZJ]b513: 判斷質數-商競103

[ZJ]d212: 東東爬階梯