2734 Quicksum

Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 4547 Accepted Submission(s): 3265**</font>

Problem Description

A checksum is an algorithm that scans a packet of data and returns a single number. The idea is that if the packet is changed, the checksum will also change, so checksums are often used for detecting transmission errors, validating document contents, and in many other situations where it is necessary to detect undesirable changes in data.

For this problem, you will implement a checksum algorithm called Quicksum. A Quicksum packet allows only uppercase letters and spaces. It always begins and ends with an uppercase letter. Otherwise, spaces and letters can occur in any combination, including consecutive spaces.

A Quicksum is the sum of the products of each character's position in the packet times the character's value. A space has a value of zero, while letters have a value equal to their position in the alphabet. So, A=1, B=2, etc., through Z=26. Here are example Quicksum calculations for the packets "ACM" and "MID CENTRAL":

ACM: 11 + 23 + 313 = 46MID CENTRAL: 113 + 29 + 34 + 40 + 53 + 65 + 714 + 820 + 918 + 101 + 1112 = 650

Input

The input consists of one or more packets followed by a line containing only # that signals the end of the input. Each packet is on a line by itself, does not begin or end with a space, and contains from 1 to 255 characters.

Output

For each packet, output its Quicksum on a separate line in the output.

Sample Input

<pre style="word-wrap: break-word; white-space: pre-wrap; margin: 0px; font-size: 14px;">

ACM
MID CENTRAL
REGIONAL PROGRAMMING CONTEST
ACN
A C M
ABC
BBC

</pre>

Sample Output

<pre style="word-wrap: break-word; white-space: pre-wrap; margin: 0px; font-size: 14px;">

46
650
4690
49
75
14
15

</pre>

Source

Mid-Central USA 2006

Recommend

teddy | We have carefully selected several similar problems for you: 2700 2719 2736 1328 2740
AC代码:

#include<stdio.h> 
#include "string.h" 
int main()  
{   int i,j,s;
    char c[300];
    while(gets(c)){//输入字符串
        if (c[0]=='#')
        {
            break;
        }
        else{
            s=0;
            for (i=0,j=1;i<strlen(c);i++,j++)
            {
                if (c[i]!=' ')
                {
                    s+=j*(c[i]-64);
                }
                else
                    s=s;
            }
        }
    printf("%d\n",s);       
    }
    
}  
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容