結果

問題 No.36 素数が嫌い!
ユーザー samplelpmassamplelpmas
提出日時 2017-01-30 18:49:27
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 392 bytes
コンパイル時間 2,057 ms
コンパイル使用メモリ 73,916 KB
実行使用メモリ 54,264 KB
最終ジャッジ日時 2024-06-06 09:37:59
合計ジャッジ時間 8,297 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 184 ms
53,632 KB
testcase_01 AC 221 ms
54,052 KB
testcase_02 AC 131 ms
53,924 KB
testcase_03 AC 130 ms
54,044 KB
testcase_04 AC 130 ms
53,976 KB
testcase_05 AC 132 ms
53,924 KB
testcase_06 AC 134 ms
54,220 KB
testcase_07 AC 133 ms
53,892 KB
testcase_08 AC 131 ms
53,996 KB
testcase_09 AC 133 ms
53,812 KB
testcase_10 AC 130 ms
53,860 KB
testcase_11 AC 166 ms
54,036 KB
testcase_12 AC 238 ms
54,144 KB
testcase_13 AC 240 ms
54,264 KB
testcase_14 WA -
testcase_15 AC 129 ms
53,796 KB
testcase_16 AC 131 ms
53,940 KB
testcase_17 AC 132 ms
53,764 KB
testcase_18 AC 127 ms
53,756 KB
testcase_19 AC 173 ms
53,932 KB
testcase_20 AC 237 ms
53,924 KB
testcase_21 AC 212 ms
53,948 KB
testcase_22 AC 220 ms
54,152 KB
testcase_23 AC 192 ms
54,080 KB
testcase_24 AC 187 ms
53,932 KB
testcase_25 AC 169 ms
53,184 KB
testcase_26 AC 194 ms
54,076 KB
testcase_27 AC 228 ms
53,940 KB
testcase_28 AC 195 ms
53,900 KB
testcase_29 AC 235 ms
54,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        long N = sc.nextLong();

        int count = 0;

        for (long i = 2; i < Math.sqrt(N); i++) {

            if (N % i == 0) {
                count++;
            }

        }

        System.out.println(1 < count ? "YES" : "NO");

    }

}
0