結果

問題 No.889 素数!
ユーザー htensaihtensai
提出日時 2020-02-13 18:09:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 1,428 bytes
コンパイル時間 2,358 ms
コンパイル使用メモリ 77,284 KB
実行使用メモリ 55,100 KB
最終ジャッジ日時 2024-10-06 06:16:25
合計ジャッジ時間 12,144 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,308 KB
testcase_01 AC 130 ms
54,260 KB
testcase_02 AC 131 ms
54,020 KB
testcase_03 AC 129 ms
54,304 KB
testcase_04 AC 130 ms
54,320 KB
testcase_05 AC 130 ms
55,100 KB
testcase_06 AC 126 ms
54,068 KB
testcase_07 AC 129 ms
54,212 KB
testcase_08 AC 131 ms
54,216 KB
testcase_09 AC 118 ms
53,048 KB
testcase_10 AC 129 ms
54,060 KB
testcase_11 AC 130 ms
54,144 KB
testcase_12 AC 130 ms
54,232 KB
testcase_13 AC 129 ms
54,100 KB
testcase_14 AC 117 ms
53,140 KB
testcase_15 AC 131 ms
54,096 KB
testcase_16 AC 132 ms
54,212 KB
testcase_17 AC 128 ms
53,800 KB
testcase_18 AC 131 ms
54,144 KB
testcase_19 AC 129 ms
54,120 KB
testcase_20 AC 132 ms
53,920 KB
testcase_21 AC 130 ms
54,288 KB
testcase_22 AC 131 ms
54,128 KB
testcase_23 AC 131 ms
53,932 KB
testcase_24 AC 132 ms
54,076 KB
testcase_25 AC 129 ms
54,000 KB
testcase_26 AC 130 ms
53,920 KB
testcase_27 AC 132 ms
54,120 KB
testcase_28 AC 131 ms
54,092 KB
testcase_29 AC 131 ms
54,012 KB
testcase_30 AC 131 ms
54,308 KB
testcase_31 AC 130 ms
54,276 KB
testcase_32 AC 129 ms
54,392 KB
testcase_33 AC 130 ms
53,960 KB
testcase_34 AC 131 ms
53,956 KB
testcase_35 AC 128 ms
54,168 KB
testcase_36 AC 127 ms
54,140 KB
testcase_37 AC 127 ms
54,092 KB
testcase_38 AC 128 ms
54,156 KB
testcase_39 AC 125 ms
54,116 KB
testcase_40 AC 129 ms
54,124 KB
testcase_41 AC 131 ms
54,140 KB
testcase_42 AC 126 ms
54,144 KB
testcase_43 AC 128 ms
54,296 KB
testcase_44 AC 129 ms
54,140 KB
testcase_45 AC 127 ms
54,228 KB
testcase_46 AC 128 ms
54,264 KB
testcase_47 AC 117 ms
53,024 KB
testcase_48 AC 126 ms
54,132 KB
testcase_49 AC 126 ms
54,056 KB
testcase_50 AC 127 ms
54,184 KB
testcase_51 AC 127 ms
53,968 KB
testcase_52 AC 127 ms
54,092 KB
testcase_53 AC 115 ms
53,004 KB
testcase_54 AC 127 ms
54,204 KB
testcase_55 AC 128 ms
54,172 KB
testcase_56 AC 130 ms
54,084 KB
testcase_57 AC 116 ms
53,012 KB
testcase_58 AC 126 ms
54,172 KB
testcase_59 AC 125 ms
53,852 KB
testcase_60 AC 129 ms
53,968 KB
testcase_61 AC 129 ms
54,240 KB
testcase_62 AC 128 ms
54,112 KB
testcase_63 AC 129 ms
54,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		if (n <= 1) {
		    System.out.println(n);
		    return;
		}
		int ans = 0;
		if (isPrime(n)) {
		    ans += 1;
		}
		if (isDbl(n)) {
		    ans += 2;
		}
		if (isTr(n)) {
		    ans += 4;
		}
		if (isPerf(n)) {
		    ans += 8;
		}
		String str;
		if (ans == 1) {
		    str = "Sosu!";
		} else if (ans == 2) {
		    str = "Heihosu!";
		} else if (ans == 4) {
		    str = "Ripposu!";
		} else if (ans == 8) {
		    str = "Kanzensu!";
		} else {
		    str = String.valueOf(n);
		}
		System.out.println(str);
   }
   
   static boolean isPrime(int x) {
       for (int i = 2; i <= Math.sqrt(x); i++) {
           if (x % i == 0) {
               return false;
           }
       }
       return true;
   }
   
   static boolean isDbl(int x) {
       for (int i = 2; i * i <= x; i++) {
           if (i * i == x) {
               return true;
           }
       }
       return false;
   }
   
   static boolean isTr(int x) {
       for (int i = 2; i * i * i <= x; i++) {
           if (i * i * i == x) {
               return true;
           }
       }
       return false;
   }
   
   static boolean isPerf(int x) {
       int sum = 1;
       for (int i = 2; i < x; i++) {
           if (x % i == 0) {
               sum += i;
           }
       }
       return sum == x;
   }
}
0