結果

問題 No.3023 素数判定するだけ
ユーザー OlderInvestorOlderInvestor
提出日時 2017-10-30 22:55:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 1,000 ms
コード長 568 bytes
コンパイル時間 3,673 ms
コンパイル使用メモリ 75,792 KB
実行使用メモリ 41,604 KB
最終ジャッジ日時 2024-05-02 01:39:54
合計ジャッジ時間 11,085 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,368 KB
testcase_01 AC 136 ms
41,208 KB
testcase_02 AC 140 ms
41,184 KB
testcase_03 AC 140 ms
40,956 KB
testcase_04 AC 138 ms
41,140 KB
testcase_05 AC 139 ms
41,320 KB
testcase_06 AC 136 ms
41,208 KB
testcase_07 AC 134 ms
41,020 KB
testcase_08 AC 134 ms
41,316 KB
testcase_09 AC 136 ms
41,176 KB
testcase_10 AC 135 ms
41,028 KB
testcase_11 AC 133 ms
41,280 KB
testcase_12 AC 132 ms
41,548 KB
testcase_13 AC 119 ms
39,956 KB
testcase_14 AC 137 ms
41,140 KB
testcase_15 AC 120 ms
40,180 KB
testcase_16 AC 135 ms
41,216 KB
testcase_17 AC 131 ms
41,276 KB
testcase_18 AC 131 ms
40,980 KB
testcase_19 AC 135 ms
41,604 KB
testcase_20 AC 118 ms
39,832 KB
testcase_21 AC 132 ms
41,552 KB
testcase_22 AC 131 ms
41,308 KB
testcase_23 AC 137 ms
41,156 KB
testcase_24 AC 136 ms
41,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class No {
    public static void main(String[] args) {
        int n = new Scanner(System.in).nextInt();
        int rootN = (int)Math.sqrt(n);
        boolean res = false;

        for(int i = 'c' % 'a'; i <= rootN; i = Math.incrementExact(i)) {
            if(n % i == 'a' % 'a') {
                res = true;
                break;
            }
        }

        if(n == 'b' % 'a') {
            System.out.println("NO");
            return;
        }
        System.out.println(res ? "NO" : "YES");
    }
}
0