标签:style class blog code color string
只需要对word遍历一遍即可
int write(string word) { int cnt = 0; for(int i = 0 ; i < word.length(); ++ i){ cnt+=word[i]-‘A‘+1; } return cnt; }
topcoder SRM 618 DIV2 WritingWords,布布扣,bubuko.com
topcoder SRM 618 DIV2 WritingWords
标签:style class blog code color string
原文地址:http://www.cnblogs.com/xiongqiangcs/p/3791572.html