結果

問題 No.36 素数が嫌い!
ユーザー htensaihtensai
提出日時 2019-12-26 10:36:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 220 ms / 5,000 ms
コード長 952 bytes
コンパイル時間 1,878 ms
コンパイル使用メモリ 75,424 KB
実行使用メモリ 41,760 KB
最終ジャッジ日時 2024-10-03 04:50:08
合計ジャッジ時間 6,815 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
41,252 KB
testcase_01 AC 134 ms
41,532 KB
testcase_02 AC 123 ms
41,148 KB
testcase_03 AC 119 ms
41,432 KB
testcase_04 AC 102 ms
41,344 KB
testcase_05 AC 118 ms
41,472 KB
testcase_06 AC 118 ms
41,596 KB
testcase_07 AC 121 ms
41,076 KB
testcase_08 AC 120 ms
41,684 KB
testcase_09 AC 118 ms
40,408 KB
testcase_10 AC 121 ms
41,332 KB
testcase_11 AC 152 ms
41,392 KB
testcase_12 AC 205 ms
41,188 KB
testcase_13 AC 220 ms
41,380 KB
testcase_14 AC 121 ms
41,616 KB
testcase_15 AC 120 ms
41,648 KB
testcase_16 AC 118 ms
41,456 KB
testcase_17 AC 100 ms
41,212 KB
testcase_18 AC 111 ms
41,224 KB
testcase_19 AC 121 ms
41,408 KB
testcase_20 AC 119 ms
41,288 KB
testcase_21 AC 120 ms
41,760 KB
testcase_22 AC 116 ms
41,552 KB
testcase_23 AC 119 ms
41,428 KB
testcase_24 AC 123 ms
41,508 KB
testcase_25 AC 131 ms
41,588 KB
testcase_26 AC 148 ms
41,364 KB
testcase_27 AC 118 ms
41,280 KB
testcase_28 AC 150 ms
41,396 KB
testcase_29 AC 109 ms
40,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long n = sc.nextLong();
        HashMap<Long, Integer> map = new HashMap<>();
        for (long i = 2; i <= Math.sqrt(n); i++) {
            while (n % i == 0) {
                if (map.containsKey(i)) {
                    map.put(i, map.get(i) + 1);
                } else {
                    map.put(i, 1);
                }
                n /= i;
            }
        }
        if (n != 1) {
            if (map.containsKey(n)) {
                map.put(n, map.get(n) + 1);
            } else {
                map.put(n, 1);
            }
        }
        boolean flag = false;
        int sum = 0;
        for (int x : map.values()) {
            sum += x;
        }
        if (sum >= 3) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }
    }
}
0