首页 > 代码库 > topcoder SRM 618 DIV2 WritingWords

topcoder SRM 618 DIV2 WritingWords

只需要对word遍历一遍即可

    int write(string word) {        int cnt = 0;        for(int i = 0 ; i < word.length(); ++ i){            cnt+=word[i]-A+1;        }        return cnt;    }