結果

問題 No.3023 素数判定するだけ
ユーザー fal_rndfal_rnd
提出日時 2017-03-31 22:44:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 616 bytes
コンパイル時間 1,748 ms
コンパイル使用メモリ 74,604 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-10-04 19:54:31
合計ジャッジ時間 7,761 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
53,652 KB
testcase_01 AC 102 ms
52,912 KB
testcase_02 AC 118 ms
54,336 KB
testcase_03 AC 105 ms
52,820 KB
testcase_04 AC 100 ms
52,620 KB
testcase_05 AC 112 ms
53,860 KB
testcase_06 AC 116 ms
54,284 KB
testcase_07 AC 104 ms
53,112 KB
testcase_08 AC 114 ms
54,060 KB
testcase_09 AC 101 ms
52,732 KB
testcase_10 AC 113 ms
54,320 KB
testcase_11 AC 101 ms
53,096 KB
testcase_12 AC 113 ms
54,216 KB
testcase_13 AC 111 ms
54,104 KB
testcase_14 AC 127 ms
54,364 KB
testcase_15 AC 101 ms
52,840 KB
testcase_16 AC 125 ms
54,100 KB
testcase_17 AC 126 ms
54,184 KB
testcase_18 AC 109 ms
53,596 KB
testcase_19 AC 107 ms
53,108 KB
testcase_20 AC 105 ms
53,076 KB
testcase_21 AC 105 ms
52,940 KB
testcase_22 AC 102 ms
53,256 KB
testcase_23 AC 112 ms
53,944 KB
testcase_24 AC 106 ms
54,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main{

	static Scanner s=new Scanner(System.in);

	public static void main(String __[]){
		input();
		solve(s.nextInt());
	}

	private static void input(){
	}

	private static void solve(int in){
		BigInteger inb=BigInteger.valueOf(in);
		if(inb.equals(BigInteger.ONE)){
			System.out.println("NO");
			return;
		}
		for(BigInteger bi=BigInteger.ONE.add(BigInteger.ONE); bi.intValue()<in; bi=bi.add(BigInteger.ONE)){
			if(inb.mod(bi).equals(BigInteger.ZERO)) {
				System.out.println("NO");
				return;
			}
		}
		System.out.println("YES");
	}
}
0