結果

問題 No.36 素数が嫌い!
ユーザー samplelpmassamplelpmas
提出日時 2017-01-30 18:54:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 349 ms / 5,000 ms
コード長 469 bytes
コンパイル時間 2,265 ms
コンパイル使用メモリ 74,800 KB
実行使用メモリ 54,516 KB
最終ジャッジ日時 2024-06-27 00:55:25
合計ジャッジ時間 9,557 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 227 ms
54,104 KB
testcase_01 AC 304 ms
54,252 KB
testcase_02 AC 133 ms
53,784 KB
testcase_03 AC 128 ms
54,020 KB
testcase_04 AC 127 ms
53,868 KB
testcase_05 AC 128 ms
53,824 KB
testcase_06 AC 115 ms
52,960 KB
testcase_07 AC 131 ms
54,236 KB
testcase_08 AC 131 ms
54,164 KB
testcase_09 AC 130 ms
53,992 KB
testcase_10 AC 117 ms
53,032 KB
testcase_11 AC 204 ms
53,892 KB
testcase_12 AC 340 ms
54,104 KB
testcase_13 AC 344 ms
54,004 KB
testcase_14 AC 271 ms
54,036 KB
testcase_15 AC 132 ms
54,180 KB
testcase_16 AC 130 ms
54,156 KB
testcase_17 AC 130 ms
54,160 KB
testcase_18 AC 132 ms
54,204 KB
testcase_19 AC 216 ms
54,104 KB
testcase_20 AC 349 ms
54,396 KB
testcase_21 AC 300 ms
54,344 KB
testcase_22 AC 295 ms
53,960 KB
testcase_23 AC 227 ms
54,260 KB
testcase_24 AC 247 ms
54,332 KB
testcase_25 AC 232 ms
53,340 KB
testcase_26 AC 266 ms
53,952 KB
testcase_27 AC 313 ms
54,516 KB
testcase_28 AC 261 ms
53,852 KB
testcase_29 AC 336 ms
53,972 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++;
            }

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

        }

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

    }

}
0