hdu4464

/*
分析:
    水题(2012成都站签到题)。


                                   2012-11-24
*/








#include"stdio.h"
#include"string.h"
#include"stdlib.h"
int main()
{
	int Case=1;
	int n;
	int i;
	char str[111];
	int ans;
	while(scanf("%d",&n)!=-1)
	{
		ans=0;
		int temp;
		while(n--)
		{
			temp=0;
			scanf("%s",str);
			for(i=0;str[i];i++)	temp+=str[i];
			if(temp>ans)	ans=temp;
		}
		printf("Case %d: %d\n",Case++,ans);
	}
	return 0;
}


你可能感兴趣的:(hdu4464)