結果

問題 No.36 素数が嫌い!
ユーザー fujisufujisu
提出日時 2015-03-21 09:53:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 3,117 bytes
コンパイル時間 2,745 ms
コンパイル使用メモリ 75,072 KB
実行使用メモリ 106,012 KB
最終ジャッジ日時 2023-09-11 09:13:26
合計ジャッジ時間 11,726 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 268 ms
104,076 KB
testcase_02 AC 244 ms
104,240 KB
testcase_03 AC 271 ms
104,228 KB
testcase_04 AC 268 ms
104,000 KB
testcase_05 AC 268 ms
104,116 KB
testcase_06 AC 265 ms
104,132 KB
testcase_07 AC 273 ms
104,148 KB
testcase_08 AC 241 ms
104,080 KB
testcase_09 AC 244 ms
103,920 KB
testcase_10 AC 265 ms
104,032 KB
testcase_11 AC 273 ms
104,380 KB
testcase_12 AC 271 ms
104,292 KB
testcase_13 AC 300 ms
104,292 KB
testcase_14 AC 245 ms
104,036 KB
testcase_15 AC 244 ms
102,560 KB
testcase_16 AC 245 ms
103,960 KB
testcase_17 AC 242 ms
104,028 KB
testcase_18 AC 240 ms
104,080 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 263 ms
104,076 KB
testcase_25 WA -
testcase_26 AC 270 ms
103,860 KB
testcase_27 AC 274 ms
104,092 KB
testcase_28 AC 271 ms
103,868 KB
testcase_29 AC 267 ms
103,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.util.Arrays;
import java.util.InputMismatchException;
import java.util.LinkedList;
import java.util.List;

public class Main {
	List<Integer> list;

	boolean isPrime(long k) {
		for (Integer d : list) {
			if (k == d) {
				return true;
			}
			if (k % d == 0) {
				return false;
			}
		}
		return true;
	}

	boolean check(long k) {
		int cnt = 0;
		for (Integer d : list) {
			while (k % d == 0) {
				k /= d;
				cnt++;
				if (3 <= cnt) {
					return true;
				}
			}
		}

		return false;
	}

	void run() {
		MyScanner sc = new MyScanner();

		int max = (int) (1e7 + 5);
		boolean[] prime = new boolean[max];
		Arrays.fill(prime, true);
		prime[0] = prime[1] = false;
		for (int i = 0; i * i <= max; i++) {
			if (prime[i]) {
				for (int j = i * i; j < max; j += i) {
					prime[j] = false;
				}
			}
		}

		list = new LinkedList<Integer>();
		for (int i = 0; i < max; i++) {
			if (prime[i]) {
				list.add(i);
			}
		}

		long n = sc.nextLong();
		if (n == 1) {
			System.out.println("NO");
		} else if (isPrime(n)) {
			System.out.println("NO");
		} else {
			System.out.println(check(n) ? "YES" : "NO");
		}
	}

	public static void main(String[] args) {
		new Main().run();
	}

	public void mapDebug(int[][] a) {
		System.out.println("--------map display---------");
		for (int i = 0; i < a.length; i++) {
			for (int j = 0; j < a[i].length; j++) {
				System.out.printf("%3d ", a[i][j]);
			}
			System.out.println();
		}
		System.out.println("----------------------------" + '\n');
	}

	class MyScanner {
		int read() {
			try {
				return System.in.read();
			} catch (IOException e) {
				throw new InputMismatchException();
			}
		}

		boolean isSpaceChar(int c) {
			return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1;
		}

		boolean isEndline(int c) {
			return c == '\n' || c == '\r' || c == -1;
		}

		int nextInt() {
			return Integer.parseInt(next());
		}

		int[] nextIntArray(int n) {
			int[] array = new int[n];
			for (int i = 0; i < n; i++)
				array[i] = nextInt();
			return array;
		}

		long nextLong() {
			return Long.parseLong(next());
		}

		long[] nextLongArray(int n) {
			long[] array = new long[n];
			for (int i = 0; i < n; i++)
				array[i] = nextLong();
			return array;
		}

		double nextDouble() {
			return Double.parseDouble(next());
		}

		double[] nextDoubleArray(int n) {
			double[] array = new double[n];
			for (int i = 0; i < n; i++)
				array[i] = nextDouble();
			return array;
		}

		String next() {
			int c = read();
			while (isSpaceChar(c))
				c = read();
			StringBuilder res = new StringBuilder();
			do {
				res.appendCodePoint(c);
				c = read();
			} while (!isSpaceChar(c));
			return res.toString();
		}

		String[] nextStringArray(int n) {
			String[] array = new String[n];
			for (int i = 0; i < n; i++)
				array[i] = next();

			return array;
		}

		String nextLine() {
			int c = read();
			while (isEndline(c))
				c = read();
			StringBuilder res = new StringBuilder();
			do {
				res.appendCodePoint(c);
				c = read();
			} while (!isEndline(c));
			return res.toString();
		}
	}
}
0