結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,224 KB
testcase_01 AC 128 ms
41,196 KB
testcase_02 AC 130 ms
41,216 KB
testcase_03 AC 129 ms
41,248 KB
testcase_04 WA -
testcase_05 AC 129 ms
41,188 KB
testcase_06 AC 129 ms
40,980 KB
testcase_07 AC 131 ms
41,460 KB
testcase_08 AC 128 ms
41,276 KB
testcase_09 WA -
testcase_10 AC 130 ms
40,888 KB
testcase_11 AC 132 ms
40,840 KB
testcase_12 AC 130 ms
41,012 KB
testcase_13 AC 129 ms
41,400 KB
testcase_14 AC 130 ms
41,036 KB
testcase_15 AC 129 ms
41,140 KB
testcase_16 AC 126 ms
41,032 KB
testcase_17 AC 133 ms
41,160 KB
testcase_18 AC 130 ms
40,868 KB
testcase_19 AC 129 ms
41,124 KB
testcase_20 AC 130 ms
41,140 KB
testcase_21 AC 128 ms
41,016 KB
testcase_22 AC 131 ms
40,832 KB
testcase_23 AC 130 ms
40,876 KB
testcase_24 AC 128 ms
40,732 KB
testcase_25 AC 131 ms
41,180 KB
testcase_26 AC 131 ms
41,304 KB
testcase_27 AC 130 ms
40,808 KB
testcase_28 AC 115 ms
40,080 KB
testcase_29 WA -
testcase_30 AC 129 ms
41,288 KB
testcase_31 AC 114 ms
39,960 KB
testcase_32 AC 127 ms
41,064 KB
testcase_33 AC 128 ms
40,972 KB
testcase_34 AC 130 ms
40,936 KB
testcase_35 AC 128 ms
40,948 KB
testcase_36 AC 129 ms
41,216 KB
testcase_37 AC 128 ms
41,336 KB
testcase_38 AC 127 ms
40,932 KB
testcase_39 AC 130 ms
40,692 KB
testcase_40 AC 130 ms
41,040 KB
testcase_41 AC 118 ms
40,060 KB
testcase_42 AC 128 ms
41,204 KB
testcase_43 AC 128 ms
40,848 KB
testcase_44 AC 128 ms
40,872 KB
testcase_45 AC 129 ms
40,880 KB
testcase_46 AC 129 ms
41,304 KB
testcase_47 AC 128 ms
40,968 KB
testcase_48 AC 130 ms
40,760 KB
testcase_49 AC 110 ms
39,644 KB
testcase_50 AC 128 ms
41,316 KB
testcase_51 AC 128 ms
41,108 KB
testcase_52 AC 129 ms
40,788 KB
testcase_53 AC 120 ms
40,212 KB
testcase_54 AC 129 ms
41,360 KB
testcase_55 AC 132 ms
41,072 KB
testcase_56 AC 128 ms
41,260 KB
testcase_57 AC 129 ms
41,080 KB
testcase_58 AC 126 ms
41,196 KB
testcase_59 AC 114 ms
39,724 KB
testcase_60 AC 129 ms
41,060 KB
testcase_61 AC 128 ms
41,380 KB
testcase_62 AC 129 ms
41,256 KB
testcase_63 AC 131 ms
41,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		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 = 0;
       for (int i = 2; i < x; i++) {
           if (x % i == 0) {
               sum += i;
           }
       }
       return sum == x;
   }
}
0