結果

問題 No.889 素数!
ユーザー ks2mks2m
提出日時 2019-09-20 22:42:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 1,109 bytes
コンパイル時間 2,541 ms
コンパイル使用メモリ 90,784 KB
実行使用メモリ 54,448 KB
最終ジャッジ日時 2024-09-14 18:43:11
合計ジャッジ時間 12,954 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,132 KB
testcase_01 AC 153 ms
54,004 KB
testcase_02 AC 132 ms
54,160 KB
testcase_03 AC 131 ms
53,932 KB
testcase_04 AC 130 ms
53,804 KB
testcase_05 AC 130 ms
53,884 KB
testcase_06 AC 127 ms
53,944 KB
testcase_07 AC 131 ms
53,888 KB
testcase_08 AC 130 ms
54,000 KB
testcase_09 AC 125 ms
52,864 KB
testcase_10 AC 131 ms
53,996 KB
testcase_11 AC 116 ms
52,644 KB
testcase_12 AC 130 ms
54,332 KB
testcase_13 AC 123 ms
52,980 KB
testcase_14 AC 128 ms
54,148 KB
testcase_15 AC 135 ms
54,192 KB
testcase_16 AC 127 ms
53,880 KB
testcase_17 AC 140 ms
54,064 KB
testcase_18 AC 130 ms
54,128 KB
testcase_19 AC 136 ms
54,296 KB
testcase_20 AC 129 ms
53,984 KB
testcase_21 AC 135 ms
54,236 KB
testcase_22 AC 137 ms
54,300 KB
testcase_23 AC 136 ms
53,988 KB
testcase_24 AC 141 ms
53,740 KB
testcase_25 AC 137 ms
54,168 KB
testcase_26 AC 118 ms
52,972 KB
testcase_27 AC 135 ms
54,072 KB
testcase_28 AC 131 ms
54,140 KB
testcase_29 AC 136 ms
54,000 KB
testcase_30 AC 129 ms
54,032 KB
testcase_31 AC 138 ms
54,000 KB
testcase_32 AC 129 ms
53,852 KB
testcase_33 AC 137 ms
54,292 KB
testcase_34 AC 137 ms
54,216 KB
testcase_35 AC 137 ms
54,348 KB
testcase_36 AC 136 ms
54,336 KB
testcase_37 AC 133 ms
53,840 KB
testcase_38 AC 139 ms
54,056 KB
testcase_39 AC 137 ms
54,120 KB
testcase_40 AC 137 ms
54,088 KB
testcase_41 AC 131 ms
54,060 KB
testcase_42 AC 138 ms
54,420 KB
testcase_43 AC 130 ms
53,852 KB
testcase_44 AC 138 ms
54,448 KB
testcase_45 AC 137 ms
54,292 KB
testcase_46 AC 139 ms
54,096 KB
testcase_47 AC 133 ms
53,892 KB
testcase_48 AC 138 ms
54,440 KB
testcase_49 AC 118 ms
52,492 KB
testcase_50 AC 122 ms
52,816 KB
testcase_51 AC 139 ms
54,292 KB
testcase_52 AC 138 ms
54,276 KB
testcase_53 AC 133 ms
53,924 KB
testcase_54 AC 138 ms
54,284 KB
testcase_55 AC 143 ms
54,136 KB
testcase_56 AC 140 ms
54,252 KB
testcase_57 AC 137 ms
54,044 KB
testcase_58 AC 141 ms
54,292 KB
testcase_59 AC 135 ms
53,996 KB
testcase_60 AC 139 ms
54,016 KB
testcase_61 AC 133 ms
53,976 KB
testcase_62 AC 139 ms
54,228 KB
testcase_63 AC 137 ms
54,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		sc.close();

		if (n < 2) {
			System.out.println(n);
			return;
		}

		if (isSosuu(n)) {
			System.out.println("Sosu!");
			return;
		}

		int n2 = (int) Math.sqrt(n);
		if (n2 * n2 == n) {
			System.out.println("Heihosu!");
			return;
		}

		if (n == 8 || n == 27 || n == 64) {
			System.out.println("Ripposu!");
			return;
		}

		List<Long> list = new ArrayList<>();
		long end = (long) Math.sqrt(n);
		for (int i = 1; i <= end; i++) {
			if (n % i == 0) {
				list.add((long) i);
			}
		}
		int i = end * end == n ? list.size() - 2 : list.size() - 1;
		for ( ; i >= 0; i--) {
			list.add(n / list.get(i));
		}
		if (list.stream().mapToLong(a -> a).sum() == n * 2) {
			System.out.println("Kanzensu!");
			return;
		}

		System.out.println(n);
	}

	static boolean isSosuu(long n) {
		for (int i = 2; i < n; i++) {
			if (n % i == 0) {
				return false;
			}
		}
		return true;
	}
}
0