topcoder SRM 618 DIV2 WritingWords

OpenSoucre發表於2014-06-16

只需要對word遍歷一遍即可

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

 

相關文章