結果

問題 No.889 素数!
ユーザー ks2mks2m
提出日時 2019-09-20 22:38:34
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,061 bytes
コンパイル時間 2,964 ms
コンパイル使用メモリ 90,300 KB
実行使用メモリ 54,572 KB
最終ジャッジ日時 2024-09-14 18:37:58
合計ジャッジ時間 13,685 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
53,808 KB
testcase_01 AC 139 ms
54,216 KB
testcase_02 AC 133 ms
53,832 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 133 ms
53,752 KB
testcase_06 AC 132 ms
53,768 KB
testcase_07 AC 134 ms
53,820 KB
testcase_08 AC 134 ms
53,964 KB
testcase_09 AC 141 ms
54,160 KB
testcase_10 AC 138 ms
53,652 KB
testcase_11 AC 135 ms
53,964 KB
testcase_12 AC 134 ms
53,972 KB
testcase_13 AC 141 ms
54,420 KB
testcase_14 AC 139 ms
53,776 KB
testcase_15 AC 140 ms
54,044 KB
testcase_16 AC 137 ms
53,552 KB
testcase_17 AC 142 ms
54,148 KB
testcase_18 AC 135 ms
53,616 KB
testcase_19 AC 141 ms
54,228 KB
testcase_20 AC 135 ms
53,956 KB
testcase_21 AC 126 ms
52,912 KB
testcase_22 AC 139 ms
54,060 KB
testcase_23 AC 142 ms
53,780 KB
testcase_24 AC 137 ms
54,176 KB
testcase_25 AC 140 ms
54,348 KB
testcase_26 AC 136 ms
53,704 KB
testcase_27 AC 142 ms
54,140 KB
testcase_28 AC 136 ms
53,828 KB
testcase_29 AC 141 ms
54,192 KB
testcase_30 AC 137 ms
53,908 KB
testcase_31 AC 137 ms
54,132 KB
testcase_32 AC 132 ms
53,672 KB
testcase_33 AC 135 ms
54,220 KB
testcase_34 AC 137 ms
53,952 KB
testcase_35 AC 141 ms
54,176 KB
testcase_36 AC 137 ms
54,160 KB
testcase_37 AC 130 ms
53,784 KB
testcase_38 AC 136 ms
53,992 KB
testcase_39 AC 139 ms
54,040 KB
testcase_40 AC 137 ms
54,064 KB
testcase_41 AC 134 ms
53,776 KB
testcase_42 AC 141 ms
54,232 KB
testcase_43 AC 136 ms
53,700 KB
testcase_44 AC 140 ms
54,008 KB
testcase_45 AC 141 ms
54,380 KB
testcase_46 AC 142 ms
53,884 KB
testcase_47 AC 133 ms
53,904 KB
testcase_48 AC 141 ms
54,060 KB
testcase_49 AC 137 ms
53,700 KB
testcase_50 AC 143 ms
53,916 KB
testcase_51 AC 143 ms
54,264 KB
testcase_52 AC 143 ms
54,208 KB
testcase_53 AC 136 ms
54,044 KB
testcase_54 AC 140 ms
54,572 KB
testcase_55 AC 141 ms
53,776 KB
testcase_56 AC 140 ms
54,376 KB
testcase_57 AC 140 ms
53,880 KB
testcase_58 AC 140 ms
53,808 KB
testcase_59 AC 134 ms
53,836 KB
testcase_60 AC 139 ms
54,068 KB
testcase_61 AC 134 ms
53,900 KB
testcase_62 AC 138 ms
53,884 KB
testcase_63 AC 140 ms
54,480 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 (isSosuu(n)) {
			System.out.println("Sosu!");
			return;
		}

		int n2 = (int) Math.sqrt(n);
		if (n > 1 && 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