結果

問題 No.889 素数!
ユーザー yukiyuki
提出日時 2020-08-19 16:26:53
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,770 bytes
コンパイル時間 2,201 ms
コンパイル使用メモリ 77,544 KB
実行使用メモリ 43,220 KB
最終ジャッジ日時 2024-10-12 04:55:29
合計ジャッジ時間 11,289 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
43,220 KB
testcase_01 AC 118 ms
42,968 KB
testcase_02 AC 106 ms
42,988 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 122 ms
41,340 KB
testcase_06 AC 108 ms
41,124 KB
testcase_07 AC 118 ms
40,964 KB
testcase_08 AC 122 ms
41,052 KB
testcase_09 WA -
testcase_10 AC 117 ms
41,272 KB
testcase_11 AC 117 ms
41,380 KB
testcase_12 AC 115 ms
42,976 KB
testcase_13 AC 119 ms
41,468 KB
testcase_14 AC 120 ms
41,372 KB
testcase_15 AC 121 ms
40,804 KB
testcase_16 AC 108 ms
41,368 KB
testcase_17 AC 106 ms
41,192 KB
testcase_18 AC 109 ms
41,032 KB
testcase_19 AC 121 ms
41,196 KB
testcase_20 AC 117 ms
40,776 KB
testcase_21 AC 118 ms
41,588 KB
testcase_22 AC 118 ms
41,248 KB
testcase_23 AC 118 ms
41,256 KB
testcase_24 AC 118 ms
39,992 KB
testcase_25 AC 116 ms
41,384 KB
testcase_26 AC 122 ms
40,944 KB
testcase_27 AC 116 ms
41,348 KB
testcase_28 AC 119 ms
41,044 KB
testcase_29 WA -
testcase_30 AC 113 ms
41,156 KB
testcase_31 AC 114 ms
41,180 KB
testcase_32 AC 114 ms
40,020 KB
testcase_33 AC 121 ms
41,548 KB
testcase_34 AC 120 ms
41,452 KB
testcase_35 AC 117 ms
41,252 KB
testcase_36 AC 118 ms
41,436 KB
testcase_37 AC 120 ms
40,904 KB
testcase_38 AC 120 ms
41,160 KB
testcase_39 AC 122 ms
41,292 KB
testcase_40 AC 106 ms
41,228 KB
testcase_41 AC 102 ms
41,360 KB
testcase_42 AC 118 ms
41,328 KB
testcase_43 AC 121 ms
41,256 KB
testcase_44 AC 123 ms
41,012 KB
testcase_45 AC 106 ms
41,252 KB
testcase_46 AC 105 ms
41,512 KB
testcase_47 AC 110 ms
41,164 KB
testcase_48 AC 110 ms
41,276 KB
testcase_49 AC 104 ms
40,064 KB
testcase_50 AC 116 ms
41,360 KB
testcase_51 AC 116 ms
40,172 KB
testcase_52 AC 118 ms
41,280 KB
testcase_53 AC 118 ms
41,164 KB
testcase_54 AC 123 ms
41,304 KB
testcase_55 AC 120 ms
41,196 KB
testcase_56 AC 119 ms
41,276 KB
testcase_57 AC 116 ms
41,412 KB
testcase_58 AC 119 ms
41,292 KB
testcase_59 AC 108 ms
41,648 KB
testcase_60 AC 120 ms
41,172 KB
testcase_61 AC 122 ms
40,952 KB
testcase_62 AC 107 ms
41,360 KB
testcase_63 AC 119 ms
41,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.Scanner;

public class Main {
	public static void main (String[] args) {
		Scanner in = new Scanner(System.in);
        List<Integer> list = new ArrayList<>();
		int N = in.nextInt();
		int a = (int)Math.sqrt(N);  // square number

        if(isPrime(N)){
            System.out.println("Sosu!");
        }else if(isSQnum(N, a)){
            System.out.println("Heihosu!");            
        }else if(isQubicNum(N)){
            System.out.println("Ripposu!");
        }else if(isPerfect(N)){
            System.out.println("Kanzensu!");
        }else{
            System.out.println(N);            
        }
        
   }
   
    static boolean isPrime(int N){
        if(N == 2)
            return true;
        else{
            // N(判定する数)までで、割り切れる数があれば、
            // それは素数ではない
            for(int i=2; i<N; i++){
                if(N % i == 0){
                    return false;
                }
            }
            return true;
        }        

    }
    
    static boolean isSQnum(int N, int a){
        if(N>=2 && a*a == N){
            return true;
        }
        return false;
    }
    
    static boolean isQubicNum(int N){
        if(Math.pow(N, 1.0 / 3) >= 2.0){
            double root = Math.pow(N, 1.0 / 3);
            if(root - Math.floor(root) == 0)
                return true;
            else
                return false;
        }
        return false;
    }
    
    static boolean isPerfect(int N){
        int sum = 0;
        for(int i=1; i<N/2; i++){
            if(N % 2 == 0){
                sum += N;
            }
        }
        if(sum == N) {
            return true;
        }
        return false;
        
    }

}
0