码迷,mamicode.com
首页 > 其他好文 > 详细

topcoder SRM 618 DIV2 WritingWords

时间:2014-06-17 14:01:50      阅读:206      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!