結果

問題 No.889 素数!
ユーザー Beat7501Beat7501
提出日時 2019-10-25 20:38:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 709 bytes
コンパイル時間 4,305 ms
コンパイル使用メモリ 74,244 KB
実行使用メモリ 41,872 KB
最終ジャッジ日時 2024-07-22 06:54:11
合計ジャッジ時間 12,607 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,412 KB
testcase_01 AC 120 ms
39,984 KB
testcase_02 AC 134 ms
41,304 KB
testcase_03 AC 133 ms
41,244 KB
testcase_04 AC 134 ms
41,384 KB
testcase_05 AC 135 ms
40,876 KB
testcase_06 AC 133 ms
41,308 KB
testcase_07 AC 133 ms
41,408 KB
testcase_08 AC 131 ms
41,240 KB
testcase_09 AC 132 ms
41,232 KB
testcase_10 AC 132 ms
40,992 KB
testcase_11 AC 134 ms
41,112 KB
testcase_12 AC 135 ms
41,288 KB
testcase_13 AC 132 ms
41,364 KB
testcase_14 AC 134 ms
41,080 KB
testcase_15 AC 134 ms
41,152 KB
testcase_16 AC 133 ms
41,076 KB
testcase_17 AC 132 ms
41,196 KB
testcase_18 AC 119 ms
40,104 KB
testcase_19 AC 133 ms
41,264 KB
testcase_20 AC 133 ms
41,248 KB
testcase_21 AC 136 ms
41,316 KB
testcase_22 AC 134 ms
41,128 KB
testcase_23 AC 133 ms
41,436 KB
testcase_24 AC 135 ms
41,228 KB
testcase_25 AC 135 ms
41,320 KB
testcase_26 AC 132 ms
41,084 KB
testcase_27 AC 131 ms
41,260 KB
testcase_28 AC 134 ms
41,268 KB
testcase_29 AC 133 ms
41,212 KB
testcase_30 AC 133 ms
41,060 KB
testcase_31 AC 135 ms
41,872 KB
testcase_32 AC 133 ms
40,816 KB
testcase_33 AC 133 ms
41,312 KB
testcase_34 AC 134 ms
41,092 KB
testcase_35 AC 132 ms
41,124 KB
testcase_36 AC 136 ms
41,120 KB
testcase_37 AC 132 ms
41,048 KB
testcase_38 AC 132 ms
41,388 KB
testcase_39 AC 131 ms
41,320 KB
testcase_40 AC 132 ms
41,084 KB
testcase_41 AC 136 ms
40,956 KB
testcase_42 AC 133 ms
41,356 KB
testcase_43 AC 132 ms
41,284 KB
testcase_44 AC 132 ms
41,196 KB
testcase_45 AC 118 ms
40,124 KB
testcase_46 AC 134 ms
41,376 KB
testcase_47 AC 131 ms
41,404 KB
testcase_48 AC 135 ms
41,232 KB
testcase_49 AC 135 ms
41,232 KB
testcase_50 AC 134 ms
41,324 KB
testcase_51 AC 137 ms
41,208 KB
testcase_52 AC 134 ms
41,388 KB
testcase_53 AC 134 ms
41,196 KB
testcase_54 AC 135 ms
41,524 KB
testcase_55 AC 133 ms
41,200 KB
testcase_56 AC 135 ms
41,120 KB
testcase_57 AC 134 ms
41,280 KB
testcase_58 AC 136 ms
41,116 KB
testcase_59 AC 134 ms
40,988 KB
testcase_60 AC 136 ms
41,068 KB
testcase_61 AC 135 ms
41,316 KB
testcase_62 AC 135 ms
41,272 KB
testcase_63 AC 133 ms
41,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main6{
	public static void main(String args[]){
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		boolean flag = true;
		for(int i = 2; i < n; i++){
			if(n%i==0){
				flag = false;
				break;
			}
		}
		if(n == 0 || n == 1){
			System.out.println(n);
		}else if(flag){
			System.out.println("Sosu!");
		}else{
			if(Math.sqrt(n)%1.==0){
				System.out.println("Heihosu!");
			}else{
				if(Math.cbrt(n)%1.0==0){
					System.out.println("Ripposu!");
				}else{
					int sum = 0;
					for(int i = 1; i < n; i++){
						if(n%i==0)sum+=i;
					}
					if(n==sum){
						System.out.println("Kanzensu!");
					}else{
						System.out.println(n);
					}
				}
			}
		}
	}
}
0