hdu4464超级大水题

对于现场赛出题出到这么水表示无语。。。。

/*

 * hdu4464/win.cpp

 * Created on: 2012-11-17

 * Author    : ben

 */

#include <cstdio>

#include <cstdlib>

#include <cstring>

#include <cmath>

#include <ctime>

#include <iostream>

#include <algorithm>

#include <queue>

#include <set>

#include <map>

#include <stack>

#include <string>

#include <vector>

#include <deque>

#include <list>

#include <functional>

#include <numeric>

#include <cctype>

using namespace std;



int main() {

#ifndef ONLINE_JUDGE

    freopen("data.in", "r", stdin);

#endif

    int t = 1, n, len;

    char str[200];

    while(scanf("%d", &n) == 1) {

        int ans = 0;

        for(int i = 0; i < n; i++) {

            int temp = 0;

            scanf("%s", str);

            len = strlen(str);

            for(int j = 0; j < len; j++) {

                temp += str[j];

            }

            if(temp > ans) {

                ans = temp;

            }

        }

        printf("Case %d: %d\n", t++, ans);

    }

    return 0;

}

你可能感兴趣的:(HDU)