結果

問題 No.36 素数が嫌い!
ユーザー rn4rurn4ru
提出日時 2016-04-13 04:15:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 619 ms / 5,000 ms
コード長 1,286 bytes
コンパイル時間 2,860 ms
コンパイル使用メモリ 77,156 KB
実行使用メモリ 47,172 KB
最終ジャッジ日時 2024-06-27 00:44:34
合計ジャッジ時間 9,195 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,272 KB
testcase_01 AC 199 ms
45,152 KB
testcase_02 AC 121 ms
41,000 KB
testcase_03 AC 121 ms
41,132 KB
testcase_04 AC 122 ms
41,156 KB
testcase_05 AC 159 ms
45,096 KB
testcase_06 AC 156 ms
45,072 KB
testcase_07 AC 152 ms
44,984 KB
testcase_08 AC 119 ms
41,284 KB
testcase_09 AC 121 ms
41,344 KB
testcase_10 AC 123 ms
41,008 KB
testcase_11 AC 370 ms
46,984 KB
testcase_12 AC 604 ms
47,128 KB
testcase_13 AC 619 ms
47,112 KB
testcase_14 AC 177 ms
45,364 KB
testcase_15 AC 124 ms
41,036 KB
testcase_16 AC 123 ms
41,152 KB
testcase_17 AC 121 ms
41,152 KB
testcase_18 AC 121 ms
41,072 KB
testcase_19 AC 124 ms
41,156 KB
testcase_20 AC 219 ms
45,396 KB
testcase_21 AC 105 ms
39,892 KB
testcase_22 AC 125 ms
41,268 KB
testcase_23 AC 121 ms
41,140 KB
testcase_24 AC 321 ms
47,132 KB
testcase_25 AC 121 ms
41,636 KB
testcase_26 AC 356 ms
47,172 KB
testcase_27 AC 204 ms
45,360 KB
testcase_28 AC 389 ms
46,820 KB
testcase_29 AC 184 ms
45,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		BigInteger N = new BigInteger(scanner.next());

		if (isComposite(N)) {
			System.out.println("YES");
		} else {
			System.out.println("NO");
		}

	}

	private static boolean isComposite(BigInteger n) {
		if (n.equals(BigInteger.ONE)) {
			return false;
		}

		BigInteger two = new BigInteger("2");
		if (n.equals(two)) {
			return false;
		}

		if (n.mod(two).equals(BigInteger.ZERO)) {
			return !isPrime(n.divide(two));
		}

		BigInteger three = new BigInteger("3");
		for (BigInteger i = three; i.multiply(i).compareTo(n) < 1; i = i.add(two)) {
			if (n.mod(i).equals(BigInteger.ZERO)) {
				return !isPrime(n.divide(i));
			}
		}

		return false;
	}

	private static boolean isPrime(BigInteger n) {
		if (n.equals(BigInteger.ONE)) {
			return true;
		}

		BigInteger two = new BigInteger("2");
		if (n.equals(two)) {
			return true;
		}

		if (n.mod(two).equals(BigInteger.ZERO)) {
			return false;
		}

		BigInteger three = new BigInteger("3");
		for (BigInteger i = three; i.multiply(i).compareTo(n) < 1; i = i.add(two)) {
			if (n.mod(i).equals(BigInteger.ZERO)) {
				return false;
			}
		}
		return true;
	}

}
0