結果

問題 No.3023 素数判定するだけ
ユーザー uwiuwi
提出日時 2017-03-31 22:39:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 1,000 ms
コード長 1,123 bytes
コンパイル時間 3,802 ms
コンパイル使用メモリ 85,440 KB
実行使用メモリ 55,060 KB
最終ジャッジ日時 2024-10-04 19:50:48
合計ジャッジ時間 9,249 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,908 KB
testcase_01 AC 136 ms
54,952 KB
testcase_02 AC 133 ms
54,948 KB
testcase_03 AC 134 ms
54,936 KB
testcase_04 AC 129 ms
54,872 KB
testcase_05 AC 132 ms
54,748 KB
testcase_06 AC 133 ms
54,828 KB
testcase_07 AC 129 ms
54,740 KB
testcase_08 AC 117 ms
54,748 KB
testcase_09 AC 130 ms
54,704 KB
testcase_10 AC 132 ms
54,928 KB
testcase_11 AC 131 ms
54,880 KB
testcase_12 AC 127 ms
54,888 KB
testcase_13 AC 120 ms
54,672 KB
testcase_14 AC 134 ms
54,792 KB
testcase_15 AC 120 ms
54,540 KB
testcase_16 AC 133 ms
54,888 KB
testcase_17 AC 136 ms
54,840 KB
testcase_18 AC 119 ms
54,396 KB
testcase_19 AC 122 ms
54,744 KB
testcase_20 AC 132 ms
54,620 KB
testcase_21 AC 137 ms
54,924 KB
testcase_22 AC 128 ms
54,588 KB
testcase_23 AC 135 ms
55,060 KB
testcase_24 AC 134 ms
54,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.math.BigInteger;
import java.util.Scanner;

public class EE {
	static Scanner in;
	static PrintWriter out;
	static String INPUT = "";
	
	static void solve()
	{
		int n = ni();
		BigInteger N = BigInteger.valueOf(n);
		for(Method m : BigInteger.class.getMethods()){
			if(m.getName().startsWith("isP")){
				try {
					if((Boolean)m.invoke(N, BigInteger.TEN.intValue())){
						out.println("YES");
					}else{
						out.println("NO");
					}
				} catch (IllegalAccessException | IllegalArgumentException | InvocationTargetException
						| SecurityException e) {
					e.printStackTrace();
				}
				break;
			}
		}
	}
	
	public static void main(String[] args) throws Exception
	{
		in = INPUT.isEmpty() ? new Scanner(System.in) : new Scanner(INPUT);
		out = new PrintWriter(System.out);
		
		solve();
		out.flush();
	}
	
	static int ni() { return Integer.parseInt(in.next()); }
	static long nl() { return Long.parseLong(in.next()); }
	static double nd() { return Double.parseDouble(in.next()); }
}
0