标签:
#include<stdio.h> int main(void) { char b; int t,cou,sum; scanf("%d",&t); getchar(); while(t--) { cou=sum=0; while((b=getchar())!=‘\n‘) { if(b==‘O‘)sum+=++cou; else cou=0; } printf("%d\n",sum); } return 0; }
得分(Score,ACM/ICPC Seoul 2005,UVa 1585)
标签:
原文地址:http://www.cnblogs.com/A--Q/p/5692602.html