Advertisement
noshin98

uva 1585

Dec 15th, 2016
385
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.82 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<string.h>
  3. int main()
  4. {
  5.     char s[100];
  6.     int a[100],t,i,j,k,c,sum,l;
  7.     while(scanf("%d",&t)==1)
  8.     {
  9.         for(i=1;i<=t;i++)
  10.         {
  11.             scanf("%s",s);
  12.             l=strlen(s);
  13.             for(j=0;j<l;j++)
  14.             {
  15.                 if(s[j]=='O')
  16.                 {
  17.                     a[j]=1;
  18.                 }
  19.                 if(s[j]=='X')
  20.                 {
  21.                     a[j]=0;
  22.                 }
  23.             }
  24.             c=0,sum=0;
  25.             for(k=0;k<l;k++)
  26.             {
  27.                 if(a[k]==1)
  28.                 {
  29.                     c++;
  30.                 }
  31.                 if(a[k]==0)
  32.                 {
  33.                     c=0;
  34.                 }
  35.                 sum=sum+c;
  36.             }
  37.  
  38.         printf("%d\n",sum);
  39.         }
  40.     }
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement