結果

問題 No.3023 素数判定するだけ
ユーザー ぴろずぴろず
提出日時 2017-03-31 23:26:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 1,000 ms
コード長 399 bytes
コンパイル時間 1,804 ms
コンパイル使用メモリ 83,076 KB
実行使用メモリ 55,060 KB
最終ジャッジ日時 2024-10-04 20:08:28
合計ジャッジ時間 8,302 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,548 KB
testcase_01 AC 135 ms
55,016 KB
testcase_02 AC 125 ms
54,488 KB
testcase_03 AC 137 ms
54,988 KB
testcase_04 AC 128 ms
54,556 KB
testcase_05 AC 123 ms
54,480 KB
testcase_06 AC 140 ms
54,792 KB
testcase_07 AC 133 ms
54,868 KB
testcase_08 AC 135 ms
54,696 KB
testcase_09 AC 129 ms
54,388 KB
testcase_10 AC 126 ms
54,716 KB
testcase_11 AC 117 ms
54,960 KB
testcase_12 AC 136 ms
55,040 KB
testcase_13 AC 131 ms
54,928 KB
testcase_14 AC 138 ms
55,016 KB
testcase_15 AC 138 ms
54,524 KB
testcase_16 AC 141 ms
55,060 KB
testcase_17 AC 124 ms
54,612 KB
testcase_18 AC 119 ms
54,564 KB
testcase_19 AC 123 ms
54,692 KB
testcase_20 AC 123 ms
54,780 KB
testcase_21 AC 132 ms
54,948 KB
testcase_22 AC 131 ms
54,484 KB
testcase_23 AC 122 ms
54,448 KB
testcase_24 AC 134 ms
54,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.lang.reflect.Method;
import java.math.BigInteger;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) throws Exception {
		BigInteger n = new Scanner(System.in).nextBigInteger();
		Method ipp = n.getClass().getMethod("isProbablePlime".replace("li", "ri"), int.class);
		System.out.println((boolean) ipp.invoke(n, (int) Math.PI) ? "YES" : "NO");
	}

}
0