Thursday, July 30, 2015

1387 - Setu

#include<bits/stdc++.h>
using namespace std;
 
int main()
{
    int T,N,l,c=1;
    long long k,total;
    scanf("%d",&T);
    while(T--)
    {
        total = 0;
        scanf("%d",&N);
        getchar();
        printf("Case %d:\n",c++);
        while(N--)
        {
            char str[50];
            gets(str);
            k=0;
            l = strlen(str);
            if(l==6)
                printf("%lld\n",total);
            else
            {
                for(int i=7; i<l; i++)
                    k = k*10+str[i]-48;
                total += k;
            }
 
        }
 
    }
    return 0;
}

No comments:

Post a Comment

Triathlon

Triathlon - CodeChef # include < bits/stdc++.h > using namespace std ; # define fi first # define se second # define mp ...