結果

問題 No.3023 素数判定するだけ
ユーザー Mcpu3Mcpu3
提出日時 2019-09-20 22:48:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 1,000 ms
コード長 486 bytes
コンパイル時間 2,334 ms
コンパイル使用メモリ 74,956 KB
実行使用メモリ 41,688 KB
最終ジャッジ日時 2024-09-14 18:55:42
合計ジャッジ時間 9,615 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,328 KB
testcase_01 AC 128 ms
41,112 KB
testcase_02 AC 133 ms
41,140 KB
testcase_03 AC 132 ms
41,300 KB
testcase_04 AC 131 ms
41,292 KB
testcase_05 AC 133 ms
41,652 KB
testcase_06 AC 118 ms
40,120 KB
testcase_07 AC 132 ms
41,188 KB
testcase_08 AC 131 ms
41,036 KB
testcase_09 AC 134 ms
41,228 KB
testcase_10 AC 134 ms
41,360 KB
testcase_11 AC 136 ms
41,408 KB
testcase_12 AC 134 ms
41,500 KB
testcase_13 AC 128 ms
41,292 KB
testcase_14 AC 139 ms
41,688 KB
testcase_15 AC 131 ms
41,412 KB
testcase_16 AC 138 ms
41,176 KB
testcase_17 AC 138 ms
41,456 KB
testcase_18 AC 131 ms
41,260 KB
testcase_19 AC 131 ms
41,148 KB
testcase_20 AC 130 ms
41,252 KB
testcase_21 AC 131 ms
41,140 KB
testcase_22 AC 134 ms
41,328 KB
testcase_23 AC 115 ms
40,080 KB
testcase_24 AC 132 ms
41,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main {
	public static void main(String[] agrs) {
		Scanner scanner = new Scanner(System.in);
		BigInteger N = scanner.nextBigInteger(), i;
		scanner.close();
		for (i = BigInteger.ONE.add(BigInteger.ONE); BigInteger.ONE.intValue() == N.compareTo(i); i = BigInteger.ONE.add(i)) {
			if (BigInteger.ZERO.equals(N.mod(i))) break;
		}
		if (N.equals(i)) System.out.print("YES");
		else System.out.print("NO");
	}
}
0