結果

問題 No.36 素数が嫌い!
ユーザー samplelpmassamplelpmas
提出日時 2017-01-30 18:50:05
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 392 bytes
コンパイル時間 1,899 ms
コンパイル使用メモリ 74,152 KB
実行使用メモリ 41,584 KB
最終ジャッジ日時 2024-06-06 09:38:56
合計ジャッジ時間 7,760 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 165 ms
39,980 KB
testcase_01 AC 197 ms
40,168 KB
testcase_02 AC 118 ms
41,172 KB
testcase_03 AC 121 ms
41,368 KB
testcase_04 AC 123 ms
41,368 KB
testcase_05 AC 125 ms
41,308 KB
testcase_06 AC 124 ms
41,324 KB
testcase_07 AC 121 ms
41,128 KB
testcase_08 AC 108 ms
39,896 KB
testcase_09 AC 117 ms
41,188 KB
testcase_10 AC 114 ms
40,304 KB
testcase_11 AC 144 ms
40,172 KB
testcase_12 AC 234 ms
41,444 KB
testcase_13 AC 226 ms
41,008 KB
testcase_14 WA -
testcase_15 AC 119 ms
41,580 KB
testcase_16 AC 115 ms
41,280 KB
testcase_17 AC 106 ms
40,172 KB
testcase_18 AC 111 ms
39,888 KB
testcase_19 AC 160 ms
41,044 KB
testcase_20 AC 233 ms
41,072 KB
testcase_21 AC 207 ms
41,292 KB
testcase_22 AC 208 ms
41,428 KB
testcase_23 AC 178 ms
41,516 KB
testcase_24 AC 182 ms
41,444 KB
testcase_25 AC 180 ms
41,548 KB
testcase_26 AC 192 ms
41,444 KB
testcase_27 AC 217 ms
41,172 KB
testcase_28 AC 189 ms
41,200 KB
testcase_29 AC 226 ms
41,584 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