結果

問題 No.3023 素数判定するだけ
ユーザー kzyKTkzyKT
提出日時 2017-03-31 22:50:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 1,000 ms
コード長 699 bytes
コンパイル時間 1,814 ms
コンパイル使用メモリ 75,592 KB
実行使用メモリ 54,296 KB
最終ジャッジ日時 2024-10-04 19:57:49
合計ジャッジ時間 7,473 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
53,116 KB
testcase_01 AC 96 ms
53,004 KB
testcase_02 AC 109 ms
53,924 KB
testcase_03 AC 98 ms
52,796 KB
testcase_04 AC 96 ms
53,056 KB
testcase_05 AC 97 ms
54,032 KB
testcase_06 AC 107 ms
53,864 KB
testcase_07 AC 119 ms
54,252 KB
testcase_08 AC 107 ms
53,832 KB
testcase_09 AC 98 ms
52,992 KB
testcase_10 AC 110 ms
54,128 KB
testcase_11 AC 108 ms
54,008 KB
testcase_12 AC 105 ms
53,784 KB
testcase_13 AC 107 ms
53,744 KB
testcase_14 AC 102 ms
52,812 KB
testcase_15 AC 106 ms
53,952 KB
testcase_16 AC 114 ms
53,928 KB
testcase_17 AC 111 ms
54,128 KB
testcase_18 AC 108 ms
53,992 KB
testcase_19 AC 107 ms
53,848 KB
testcase_20 AC 93 ms
52,584 KB
testcase_21 AC 108 ms
54,176 KB
testcase_22 AC 107 ms
54,296 KB
testcase_23 AC 93 ms
54,220 KB
testcase_24 AC 98 ms
52,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static Scanner cin = new Scanner(System.in);
    public static void main(String[] args) {
        BigInteger n = new BigInteger(cin.next());
        BigInteger i = BigInteger.ONE;
        i=i.add(BigInteger.ONE);
        BigInteger f = BigInteger.ONE;
        if(n.equals(BigInteger.ONE)) f=BigInteger.ZERO;
        for(;; i=i.add(BigInteger.ONE)) {
            if(i.equals(n)||f.equals(BigInteger.ZERO)) break;
            if(n.mod(i)==BigInteger.ZERO) f=BigInteger.ZERO;
        }
        if(f.equals(BigInteger.ONE)) System.out.println("YES");
        else System.out.println("NO");
    }
}
0