码迷,mamicode.com
首页 > 其他好文 > 详细

得分(Score,ACM/ICPC Seoul 2005,UVa 1585)

时间:2016-07-21 19:24:00      阅读:334      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

 

#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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!