結果

問題 No.811 約数の個数の最大化
ユーザー htensaihtensai
提出日時 2020-01-26 09:25:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 227 ms / 2,000 ms
コード長 2,022 bytes
コンパイル時間 4,951 ms
コンパイル使用メモリ 87,012 KB
実行使用メモリ 45,656 KB
最終ジャッジ日時 2024-09-14 10:50:27
合計ジャッジ時間 6,025 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,088 KB
testcase_01 AC 119 ms
39,944 KB
testcase_02 AC 227 ms
45,164 KB
testcase_03 AC 131 ms
41,356 KB
testcase_04 AC 135 ms
41,100 KB
testcase_05 AC 149 ms
41,156 KB
testcase_06 AC 164 ms
41,404 KB
testcase_07 AC 168 ms
41,672 KB
testcase_08 AC 197 ms
43,568 KB
testcase_09 AC 192 ms
43,444 KB
testcase_10 AC 190 ms
42,684 KB
testcase_11 AC 193 ms
44,688 KB
testcase_12 AC 187 ms
42,644 KB
testcase_13 AC 215 ms
45,656 KB
testcase_14 AC 208 ms
45,464 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> map = new HashMap<>();
        int x = n;
        for (int i = 2; i <= Math.sqrt(x); i++) {
            while (x % i == 0) {
                if (map.containsKey(i)) {
                    map.put(i, map.get(i) + 1);
                } else {
                    map.put(i, 1);
                }
                x /= i;
            }
        }
        if (x > 1) {
            if (map.containsKey(x)) {
                map.put(x, map.get(x) + 1);
            } else {
                map.put(x, 1);
            }
        }
        int max = 0;
        int maxNumber = 0;
        for (int i = 2; i < n; i++) {
            int y = i;
            int count = 0;
            for (Map.Entry<Integer, Integer> entry : map.entrySet()) {
                for (int j = 0; j < entry.getValue() && count < k; j++) {
                    if (y % entry.getKey() == 0) {
                        y /= entry.getKey();
                        count++;
                    } else {
                        break;
                    }
                }
                if (count >= k) {
                    break;
                }
            }
            if (count >= k) {
                int m = getCount(i);
                if (max < m) {
                    max = m;
                    maxNumber = i;
                }
            }
        }
        System.out.println(maxNumber);
    }
    
    static int getCount(int x) {
        int count = 1;
        for (int i = 2; i <= Math.sqrt(x); i++) {
            if (x % i == 0) {
                int cnt = 0;
                while(x % i == 0) {
                    cnt++;
                    x /= i;
                }
                count *= (cnt + 1);
            } 
        }
        if (x > 1) {
            count *= 2;
        }
        return count;
    }

}
0