随笔 - 147  文章 - 71  trackbacks - 0
<2009年9月>
303112345
6789101112
13141516171819
20212223242526
27282930123
45678910

常用链接

留言簿(1)

随笔分类(146)

随笔档案(147)

文章分类(28)

文章档案(28)

喜欢的Blog

搜索

  •  

最新评论

阅读排行榜

评论排行榜

http://acm.fjnu.edu.cn/show?problem_id=1769
打表,注意如果是其他字符,就不增加按键次数。
import java.util.*;
import java.io.*;

public class ACM_1769{
    
    
public static void main(String rgs[]) throws Exception
    
{
        BufferedReader stdin 
= 
            
new BufferedReader(
                
new InputStreamReader(System.in));
        
int[] a=new int[]{0,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,4,1,2,3,1,2,3,4};
           String s 
=null;
          
while((s = stdin.readLine())!=null){
              
int count=0;
            
for(int i=0;i<s.length();i++){
                
char c=s.charAt(i);
                
if(c>='a' && c<='z')
                    count
+=a[c-96];
                
else if(c==' ')
                    count
++;
            }

            System.out.println(count);
        }

    }

}
posted on 2009-09-27 10:22 飞翔天使 阅读(197) 评论(0)  编辑  收藏 所属分类: ACM

只有注册用户登录后才能发表评论。


网站导航: