結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,136 KB
testcase_01 AC 135 ms
41,200 KB
testcase_02 AC 134 ms
40,992 KB
testcase_03 AC 135 ms
41,332 KB
testcase_04 AC 136 ms
41,412 KB
testcase_05 AC 135 ms
41,252 KB
testcase_06 AC 130 ms
41,024 KB
testcase_07 AC 132 ms
41,120 KB
testcase_08 AC 134 ms
41,020 KB
testcase_09 AC 133 ms
41,052 KB
testcase_10 AC 133 ms
41,072 KB
testcase_11 AC 119 ms
40,064 KB
testcase_12 AC 135 ms
41,160 KB
testcase_13 AC 132 ms
41,056 KB
testcase_14 AC 132 ms
41,088 KB
testcase_15 AC 119 ms
39,936 KB
testcase_16 AC 133 ms
41,152 KB
testcase_17 AC 131 ms
41,112 KB
testcase_18 AC 134 ms
41,360 KB
testcase_19 AC 135 ms
41,260 KB
testcase_20 AC 136 ms
41,136 KB
testcase_21 AC 131 ms
41,048 KB
testcase_22 AC 131 ms
41,060 KB
testcase_23 AC 133 ms
41,116 KB
testcase_24 AC 133 ms
41,180 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