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

NYOJ题目62笨小熊

时间:2016-09-21 01:38:12      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

-----------------------------

 

水题,没啥好说的。

 

还是有点感悟,很多时候所谓评价是很不客观的,凡事一定要有自己的想法。

 

AC代码:

 1 import java.util.Scanner;
 2 
 3 public class Main {
 4 
 5     public static void main(String[] args) {
 6         
 7         Scanner sc=new Scanner(System.in);
 8         
 9         int times=Integer.parseInt(sc.nextLine());
10         while(times-->0){
11             String s=sc.nextLine();
12             int ans=solve(s);
13             System.out.printf("%s\n%d\n",ans>0?"Lucky Word":"No Answer",ans);
14         }
15         
16     }
17     
18     public static int solve(String s){
19         int book[]=new int[26];
20         for(int i=0;i<s.length();i++){
21             book[s.charAt(i)-‘a‘]++;
22         }
23         int max=Integer.MIN_VALUE, min=Integer.MAX_VALUE;
24         for(int i=0;i<book.length;i++){
25             if(book[i]!=0){
26                 max=Math.max(max,book[i]);
27                 min=Math.min(min,book[i]);
28             }
29         }
30         return isPrime(max-min)?max-min:0;
31     }
32     
33     public static boolean isPrime(int n){
34         for(int i=2,end=(int) Math.sqrt(n);i<=end;i++) if(n/i*i==n) return false;
35         return n>=2;
36     }
37     
38     
39 }

 

题目来源: http://acm.nyist.net/JudgeOnline/problem.php?pid=62

NYOJ题目62笨小熊

标签:

原文地址:http://www.cnblogs.com/cc11001100/p/5891080.html

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