結果

問題 No.8023 素数判定するだけ
ユーザー ぴろずぴろず
提出日時 2017-03-31 23:26:35
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

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