結果

問題 No.3023 素数判定するだけ
ユーザー Mcpu3Mcpu3
提出日時 2019-09-20 22:45:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 1,000 ms
コード長 486 bytes
コンパイル時間 4,558 ms
コンパイル使用メモリ 74,444 KB
実行使用メモリ 54,120 KB
最終ジャッジ日時 2024-09-14 18:49:29
合計ジャッジ時間 9,715 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,712 KB
testcase_01 AC 134 ms
53,836 KB
testcase_02 AC 132 ms
53,700 KB
testcase_03 AC 137 ms
53,708 KB
testcase_04 AC 133 ms
54,092 KB
testcase_05 AC 130 ms
54,120 KB
testcase_06 AC 133 ms
54,020 KB
testcase_07 AC 131 ms
54,060 KB
testcase_08 AC 129 ms
53,928 KB
testcase_09 AC 129 ms
53,792 KB
testcase_10 AC 133 ms
53,924 KB
testcase_11 AC 133 ms
53,892 KB
testcase_12 AC 137 ms
54,060 KB
testcase_13 AC 135 ms
53,760 KB
testcase_14 AC 141 ms
53,964 KB
testcase_15 AC 135 ms
54,108 KB
testcase_16 AC 138 ms
53,932 KB
testcase_17 AC 141 ms
53,976 KB
testcase_18 AC 134 ms
53,788 KB
testcase_19 AC 135 ms
53,660 KB
testcase_20 AC 120 ms
52,668 KB
testcase_21 AC 136 ms
53,772 KB
testcase_22 AC 134 ms
53,632 KB
testcase_23 AC 136 ms
53,848 KB
testcase_24 AC 119 ms
52,696 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 = i.add(BigInteger.ONE)) {
			if (BigInteger.ZERO.equals(N.mod(i))) break;
		}
		if (N.equals(i)) System.out.print("YES");
		else System.out.print("NO");
	}
}
0