結果

問題 No.36 素数が嫌い!
ユーザー ぴろずぴろず
提出日時 2014-12-16 21:42:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,593 bytes
コンパイル時間 2,030 ms
コンパイル使用メモリ 77,708 KB
実行使用メモリ 79,884 KB
最終ジャッジ日時 2024-06-11 21:56:23
合計ジャッジ時間 8,303 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 220 ms
73,200 KB
testcase_02 AC 105 ms
53,016 KB
testcase_03 AC 105 ms
53,020 KB
testcase_04 AC 107 ms
52,948 KB
testcase_05 AC 116 ms
54,228 KB
testcase_06 AC 108 ms
52,840 KB
testcase_07 AC 121 ms
54,176 KB
testcase_08 AC 118 ms
54,132 KB
testcase_09 AC 118 ms
53,888 KB
testcase_10 WA -
testcase_11 AC 177 ms
63,308 KB
testcase_12 AC 264 ms
78,528 KB
testcase_13 AC 270 ms
78,612 KB
testcase_14 AC 199 ms
68,876 KB
testcase_15 AC 117 ms
54,088 KB
testcase_16 AC 122 ms
54,340 KB
testcase_17 AC 106 ms
52,752 KB
testcase_18 AC 116 ms
53,864 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 207 ms
65,336 KB
testcase_25 WA -
testcase_26 AC 207 ms
69,224 KB
testcase_27 AC 261 ms
79,884 KB
testcase_28 AC 209 ms
69,300 KB
testcase_29 AC 261 ms
77,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no036;

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

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		SeiveOfEratosthenes.init(n+1);
		if (SeiveOfEratosthenes.primeFactor(n).size() >= 3) {
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}
	}

}
class SeiveOfEratosthenes {
	private static long max_number;
	private static int max_number_sieve;
	private static boolean[] is_not_prime;
	private static ArrayList<Integer> prime = new ArrayList<Integer>();
	public static void init(long maxnum) {
		max_number = maxnum;
		max_number_sieve = (int) Math.sqrt(max_number);
		is_not_prime = new boolean[max_number_sieve+1];
		is_not_prime[0] = is_not_prime[1] = true;
		for(int i=2;i*i<=max_number_sieve;i++) {
			if (!is_not_prime[i]) {
				int j = 2;
				while(i*j<=max_number_sieve) {
					is_not_prime[i*j] = true;
					j++;
				}
			}
		}
		for(int i=2;i<=max_number_sieve;i++) {
			if(!is_not_prime[i]) {
				prime.add(i);
			}
		}
	}
	public static boolean isPrime(long n) {
		if (n>max_number) {
			return false;
		}
		if (n<=max_number_sieve) {
			return !is_not_prime[(int) n];
		}else{
			for(int p:prime) {
				if (n%p==0 && n!=p) {
					return false;
				}
			}
			return true;
		}
	}
	public static ArrayList<Integer> primeFactor(long n) {
		ArrayList<Integer> factor = new ArrayList<Integer>();
		for(int p:prime) {
			while(n%p==0) {
				n/=p;
				factor.add(p);
			}
		}
		return factor;
	}
}
0