首页 > 代码库 > HDU 4464 Browsing History(最大ASCII的和)
HDU 4464 Browsing History(最大ASCII的和)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4464
Problem Description
One day when you are going to clear all your browsing history, you come up with an idea: You want to figure out what your most valued site is. Every site is given a value which equals to the sum of ASCII values of all characters in the URL. For example aa.cc has value of 438 because 438 = 97 + 97 + 46 + 99 + 99. You just need to print the largest value amongst all values of sites.
Things are simplified because you found that all entries in your browsing history are of the following format: [domain], where [domain] consists of lower-case Latin letters and “.” only. See the sample input for more details.
Things are simplified because you found that all entries in your browsing history are of the following format: [domain], where [domain] consists of lower-case Latin letters and “.” only. See the sample input for more details.
Input
There are several test cases.
For each test case, the first line contains an integer n (1 ≤ n ≤ 100), the number of entries in your browsing history.
Then follows n lines, each consisting of one URL whose length will not exceed 100.
Input is terminated by EOF.
For each test case, the first line contains an integer n (1 ≤ n ≤ 100), the number of entries in your browsing history.
Then follows n lines, each consisting of one URL whose length will not exceed 100.
Input is terminated by EOF.
Output
For each test case, output one line “Case X: Y” where X is the test case number (starting from 1) and Y is a number indicating the desired answer.
Sample Input
1 aa.cc 2 www.google.com www.wikipedia.org
Sample Output
Case 1: 438 Case 2: 1728
Source
2012 Asia Chengdu Regional Contest
题意:
求最大的ASCII的和!
代码如下:
#include <cstdio> #include <cstring> int main() { int cas = 0; int n; char s[117]; while(~scanf("%d",&n)) { getchar(); int maxx = 0; int sum = 0; for(int i = 0; i < n; i++) { gets(s); sum = 0; int len = strlen(s); for(int j = 0; j < len; j++) { sum += s[j]; } if(sum > maxx) maxx = sum; } printf("Case %d: %d\n",++cas,maxx); } return 0; }
HDU 4464 Browsing History(最大ASCII的和)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。