zoukankan      html  css  js  c++  java
  • 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;
    }
  • 相关阅读:
    Delphi源程序格式书写规范
    ORACLE常用傻瓜问题1000问
    世界上最健康的作息时间表
    poj1657
    poj1604
    poj1654
    poj1635
    poj1655
    成为一个不折不扣的时间管理专家[推荐]
    男人的十三怕
  • 原文地址:https://www.cnblogs.com/moonbay/p/2766562.html
Copyright © 2011-2022 走看看