只需要对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
时间: 2024-10-06 22:24:50
只需要对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