結果

問題 No.3023 素数判定するだけ
ユーザー tanzakutanzaku
提出日時 2017-03-31 22:50:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 1,000 ms
コード長 533 bytes
コンパイル時間 2,820 ms
コンパイル使用メモリ 76,204 KB
実行使用メモリ 54,228 KB
最終ジャッジ日時 2024-10-04 19:57:09
合計ジャッジ時間 8,416 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
52,772 KB
testcase_01 AC 112 ms
53,728 KB
testcase_02 AC 102 ms
53,108 KB
testcase_03 AC 102 ms
53,036 KB
testcase_04 AC 112 ms
54,080 KB
testcase_05 AC 101 ms
53,060 KB
testcase_06 AC 110 ms
54,228 KB
testcase_07 AC 107 ms
54,016 KB
testcase_08 AC 108 ms
53,716 KB
testcase_09 AC 108 ms
53,140 KB
testcase_10 AC 109 ms
53,816 KB
testcase_11 AC 109 ms
54,004 KB
testcase_12 AC 100 ms
53,192 KB
testcase_13 AC 98 ms
52,824 KB
testcase_14 AC 115 ms
52,860 KB
testcase_15 AC 101 ms
53,116 KB
testcase_16 AC 100 ms
52,836 KB
testcase_17 AC 115 ms
54,040 KB
testcase_18 AC 111 ms
53,744 KB
testcase_19 AC 102 ms
53,148 KB
testcase_20 AC 113 ms
53,676 KB
testcase_21 AC 104 ms
53,128 KB
testcase_22 AC 100 ms
52,668 KB
testcase_23 AC 101 ms
53,028 KB
testcase_24 AC 107 ms
53,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class yuki {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		BigInteger b = sc.nextBigInteger();
		for (BigInteger i = BigInteger.ONE.add(BigInteger.ONE); i.compareTo(b) < BigInteger.ZERO.intValue(); i = i.add(BigInteger.ONE)) {
			if (b.mod(i).equals(BigInteger.ZERO)) {
				System.out.println("NO");
				return;
			}
		}
		if (b.equals(BigInteger.ONE)) {
			System.out.println("NO");
			return;
		}
		System.out.println("YES");
	}
}
0