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

hdu 4464 水

时间:2014-10-18 00:46:37      阅读:271      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   os   ar   for   sp   2014   on   

http://acm.hdu.edu.cn/showproblem.php?pid=4464

现场赛总会有水题,这就是最水的一道,估计也就是能当高校的上机题,保研用,呵呵~~~

#include <cstdio>
#include <cstring>
#include <iostream>
using namespace std;
#define ll long long
const int MAXN= 100+20;
char s[MAXN];

int main()
{
    int n;
    int ic=0;
    while(~scanf("%d",&n))
    {
        ll ans=0;
        for(int i=0;i<n;i++)
        {
            ll ret=0;
           scanf("%s",s);
           int len=strlen(s);
           for(int j=0;j<len;j++)
           {
               if(s[i]=='.')ret+=46LL;
                else ret+=(ll)s[j];
           }
            ans=max(ans,ret);
        }
        printf("Case %d: %I64d\n",++ic,ans);
    }
    return 0;
}


hdu 4464 水

标签:blog   http   io   os   ar   for   sp   2014   on   

原文地址:http://blog.csdn.net/u011026968/article/details/40198655

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