結果

問題 No.811 約数の個数の最大化
ユーザー tentententen
提出日時 2020-11-18 13:49:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 1,429 bytes
コンパイル時間 2,507 ms
コンパイル使用メモリ 79,648 KB
実行使用メモリ 54,944 KB
最終ジャッジ日時 2024-07-23 09:01:15
合計ジャッジ時間 5,594 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,028 KB
testcase_01 AC 134 ms
54,308 KB
testcase_02 AC 170 ms
54,944 KB
testcase_03 AC 136 ms
53,948 KB
testcase_04 AC 141 ms
54,020 KB
testcase_05 AC 135 ms
54,036 KB
testcase_06 AC 155 ms
54,376 KB
testcase_07 AC 161 ms
54,256 KB
testcase_08 AC 177 ms
54,456 KB
testcase_09 AC 155 ms
54,432 KB
testcase_10 AC 160 ms
54,080 KB
testcase_11 AC 173 ms
54,404 KB
testcase_12 AC 171 ms
54,196 KB
testcase_13 AC 154 ms
54,028 KB
testcase_14 AC 186 ms
54,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int k = sc.nextInt();
        HashMap<Integer, Integer> inner = new HashMap<>();
        int x = n;
        for (int i = 2; i <= Math.sqrt(n); i++) {
            while (x % i == 0) {
                inner.put(i, inner.getOrDefault(i, 0) + 1);
                x /= i;
            }
        }
        if (x > 1) {
            inner.put(x, inner.getOrDefault(x, 0) + 1);
        }
        int[] totals = new int[n];
        int max = 0;
        int ans = 0;
        for (int i = 2; i < n; i++) {
            boolean flag = (totals[i] == 0);
            for (int j = 1; j * i < n; j++) {
                totals[i * j]++;
            }
            if (max < totals[i]) {
                if (getCount(i, inner) >= k) {
                    max = totals[i];
                    ans = i;
                }
            }
        }
        System.out.println(ans);
    }
    
    static int getCount(int x, HashMap<Integer, Integer> inner) {
        int count = 0;
        for (int y : inner.keySet()) {
            for (int i = 0; i < inner.get(y); i++) {
                if (x % y == 0) {
                    count++;
                    x /= y;
                } else {
                    break;
                }
            }
        }
        return count;
    }
}
0