結果

問題 No.36 素数が嫌い!
ユーザー rn4rurn4ru
提出日時 2016-04-13 03:56:28
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 855 bytes
コンパイル時間 2,329 ms
コンパイル使用メモリ 74,952 KB
実行使用メモリ 58,992 KB
最終ジャッジ日時 2024-10-04 06:55:51
合計ジャッジ時間 12,327 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 207 ms
56,964 KB
testcase_02 AC 128 ms
53,700 KB
testcase_03 AC 128 ms
54,048 KB
testcase_04 AC 130 ms
53,864 KB
testcase_05 AC 170 ms
56,912 KB
testcase_06 AC 175 ms
58,824 KB
testcase_07 AC 178 ms
56,464 KB
testcase_08 AC 130 ms
53,836 KB
testcase_09 WA -
testcase_10 AC 132 ms
54,116 KB
testcase_11 AC 381 ms
58,412 KB
testcase_12 AC 631 ms
58,336 KB
testcase_13 AC 634 ms
58,636 KB
testcase_14 WA -
testcase_15 AC 129 ms
54,272 KB
testcase_16 AC 130 ms
54,108 KB
testcase_17 AC 129 ms
53,872 KB
testcase_18 WA -
testcase_19 AC 129 ms
53,964 KB
testcase_20 AC 226 ms
56,840 KB
testcase_21 AC 131 ms
54,108 KB
testcase_22 AC 129 ms
54,104 KB
testcase_23 AC 129 ms
54,032 KB
testcase_24 AC 316 ms
58,456 KB
testcase_25 AC 130 ms
54,004 KB
testcase_26 AC 493 ms
58,584 KB
testcase_27 AC 688 ms
58,992 KB
testcase_28 AC 531 ms
58,560 KB
testcase_29 AC 686 ms
58,820 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 (isPrime(N)) {
			System.out.println("NO");
		} else {
			System.out.println("YES");
		}

	}

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

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

		boolean once = false;
		if (n.mod(two).equals(BigInteger.ZERO)) {
			once = true;
		}

		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)) {
				if (once) {
					return false;
				} else {
					once = true;
				}
			}
		}

		return true;
	}

}
0