結果

問題 No.847 Divisors of Power
ユーザー htensaihtensai
提出日時 2019-12-09 23:09:03
言語 Java
(openjdk 23)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 1,482 bytes
コンパイル時間 3,125 ms
コンパイル使用メモリ 79,224 KB
実行使用メモリ 41,568 KB
最終ジャッジ日時 2024-06-23 07:58:34
合計ジャッジ時間 7,049 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
40,768 KB
testcase_01 AC 124 ms
41,376 KB
testcase_02 AC 123 ms
40,628 KB
testcase_03 AC 109 ms
40,228 KB
testcase_04 AC 111 ms
39,704 KB
testcase_05 AC 127 ms
41,464 KB
testcase_06 AC 127 ms
40,600 KB
testcase_07 AC 129 ms
40,760 KB
testcase_08 AC 128 ms
40,756 KB
testcase_09 AC 129 ms
40,968 KB
testcase_10 AC 133 ms
40,944 KB
testcase_11 AC 128 ms
41,004 KB
testcase_12 AC 126 ms
41,076 KB
testcase_13 AC 110 ms
40,284 KB
testcase_14 AC 114 ms
40,396 KB
testcase_15 AC 128 ms
40,604 KB
testcase_16 AC 126 ms
40,812 KB
testcase_17 AC 124 ms
41,236 KB
testcase_18 AC 129 ms
41,320 KB
testcase_19 AC 127 ms
41,028 KB
testcase_20 AC 129 ms
40,568 KB
testcase_21 AC 141 ms
41,568 KB
testcase_22 AC 131 ms
40,852 KB
testcase_23 AC 128 ms
41,408 KB
testcase_24 AC 140 ms
41,320 KB
testcase_25 AC 129 ms
41,208 KB
testcase_26 AC 116 ms
39,796 KB
testcase_27 AC 116 ms
39,780 KB
testcase_28 AC 128 ms
40,896 KB
testcase_29 AC 126 ms
41,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static int m;
    static int[] keys;
    static long[] values;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        long k = sc.nextInt();
        m = sc.nextInt();
        HashMap<Integer, Integer> map = new HashMap<>();
        for (int 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);
            }
        }
        keys = new int[map.size()];
        values = new long[map.size()];
        int idx = 0;
        for (Map.Entry<Integer, Integer> entry : map.entrySet()) {
            keys[idx] = entry.getKey();
            values[idx] = entry.getValue() * k;
            idx++;
        }
        System.out.println(search(0, 1));
    }
    
    static long search(int idx, long v) {
        if (idx >= keys.length) {
            return 1;
        }
        long ans = 0;
        long count = 0;
        while (v <= m && count <= values[idx]) {
            ans += search(idx + 1, v);
            v *= keys[idx];
            count++;
        }
        return ans;
    }
}
0