結果

問題 No.889 素数!
ユーザー htensaihtensai
提出日時 2020-02-13 18:08:58
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,428 bytes
コンパイル時間 2,308 ms
コンパイル使用メモリ 77,084 KB
実行使用メモリ 41,620 KB
最終ジャッジ日時 2024-10-06 06:15:44
合計ジャッジ時間 12,395 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,120 KB
testcase_01 AC 131 ms
41,152 KB
testcase_02 AC 138 ms
41,080 KB
testcase_03 WA -
testcase_04 AC 132 ms
41,408 KB
testcase_05 AC 132 ms
41,236 KB
testcase_06 AC 132 ms
41,336 KB
testcase_07 AC 131 ms
41,532 KB
testcase_08 AC 133 ms
41,072 KB
testcase_09 AC 133 ms
41,232 KB
testcase_10 AC 132 ms
41,172 KB
testcase_11 AC 129 ms
41,072 KB
testcase_12 AC 127 ms
41,296 KB
testcase_13 AC 131 ms
41,044 KB
testcase_14 AC 128 ms
41,352 KB
testcase_15 AC 130 ms
41,296 KB
testcase_16 AC 131 ms
41,512 KB
testcase_17 AC 129 ms
41,048 KB
testcase_18 AC 132 ms
41,280 KB
testcase_19 AC 132 ms
41,044 KB
testcase_20 AC 132 ms
41,028 KB
testcase_21 AC 130 ms
41,120 KB
testcase_22 AC 127 ms
41,228 KB
testcase_23 AC 129 ms
41,208 KB
testcase_24 AC 133 ms
41,400 KB
testcase_25 AC 134 ms
40,984 KB
testcase_26 AC 135 ms
41,252 KB
testcase_27 AC 134 ms
41,028 KB
testcase_28 AC 133 ms
40,864 KB
testcase_29 AC 134 ms
41,224 KB
testcase_30 AC 132 ms
41,120 KB
testcase_31 AC 135 ms
41,080 KB
testcase_32 AC 133 ms
41,020 KB
testcase_33 AC 150 ms
41,140 KB
testcase_34 AC 133 ms
41,436 KB
testcase_35 AC 132 ms
41,184 KB
testcase_36 AC 134 ms
41,208 KB
testcase_37 AC 133 ms
41,052 KB
testcase_38 AC 135 ms
41,296 KB
testcase_39 AC 132 ms
41,616 KB
testcase_40 AC 134 ms
41,204 KB
testcase_41 AC 132 ms
41,488 KB
testcase_42 AC 132 ms
41,364 KB
testcase_43 AC 133 ms
41,324 KB
testcase_44 AC 135 ms
41,284 KB
testcase_45 AC 134 ms
41,272 KB
testcase_46 AC 134 ms
41,608 KB
testcase_47 AC 132 ms
40,864 KB
testcase_48 AC 131 ms
41,260 KB
testcase_49 AC 133 ms
41,476 KB
testcase_50 AC 132 ms
41,620 KB
testcase_51 AC 134 ms
40,944 KB
testcase_52 AC 133 ms
41,120 KB
testcase_53 AC 132 ms
41,084 KB
testcase_54 AC 133 ms
41,076 KB
testcase_55 AC 132 ms
41,016 KB
testcase_56 AC 134 ms
40,992 KB
testcase_57 AC 132 ms
41,148 KB
testcase_58 AC 132 ms
41,188 KB
testcase_59 AC 134 ms
41,336 KB
testcase_60 AC 134 ms
41,240 KB
testcase_61 AC 133 ms
41,356 KB
testcase_62 AC 133 ms
40,992 KB
testcase_63 AC 133 ms
41,208 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(1);
		    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