UVa-1585-得分

#include <stdio.h>
#include <string.h>
int main()
{
	char s[100];
	int T;
	scanf("%d",&T);
	while (T--) {
		scanf("%s",s);
		int len=strlen(s);
		int cnt=0,score=0;
		for (int i=0;i<len;i++) {
			if (s[i]=='O')
				cnt++;
			else 
				cnt=0;
			score+=cnt;
		}
		printf("%d\n",score);
	}
}

 

posted @ 2018-12-26 20:29  xyee  阅读(72)  评论(0编辑  收藏  举报