結果

問題 No.847 Divisors of Power
ユーザー tentententen
提出日時 2022-10-06 11:23:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 1,885 bytes
コンパイル時間 1,987 ms
コンパイル使用メモリ 78,372 KB
実行使用メモリ 39,072 KB
最終ジャッジ日時 2024-06-10 22:01:53
合計ジャッジ時間 4,431 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
37,108 KB
testcase_01 AC 45 ms
37,240 KB
testcase_02 AC 46 ms
37,116 KB
testcase_03 AC 46 ms
36,896 KB
testcase_04 AC 45 ms
37,080 KB
testcase_05 AC 45 ms
36,800 KB
testcase_06 AC 45 ms
37,016 KB
testcase_07 AC 45 ms
37,120 KB
testcase_08 AC 46 ms
37,248 KB
testcase_09 AC 47 ms
36,992 KB
testcase_10 AC 45 ms
36,956 KB
testcase_11 AC 45 ms
37,016 KB
testcase_12 AC 47 ms
37,248 KB
testcase_13 AC 45 ms
37,220 KB
testcase_14 AC 44 ms
37,232 KB
testcase_15 AC 77 ms
38,816 KB
testcase_16 AC 46 ms
37,204 KB
testcase_17 AC 46 ms
37,032 KB
testcase_18 AC 46 ms
37,212 KB
testcase_19 AC 46 ms
37,116 KB
testcase_20 AC 46 ms
36,684 KB
testcase_21 AC 56 ms
37,112 KB
testcase_22 AC 44 ms
36,928 KB
testcase_23 AC 44 ms
36,936 KB
testcase_24 AC 82 ms
39,072 KB
testcase_25 AC 44 ms
36,992 KB
testcase_26 AC 44 ms
37,220 KB
testcase_27 AC 49 ms
37,200 KB
testcase_28 AC 45 ms
36,992 KB
testcase_29 AC 44 ms
37,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    static HashMap<Integer, Integer> counts = new HashMap<>();
    static long k;
    static int m;
    static int[] values;
    static int ans = 0;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        k = sc.nextInt();
        m = sc.nextInt();
        for (int i = 2; i <= Math.sqrt(n); i++) {
            while (n % i == 0) {
                counts.put(i, counts.getOrDefault(i, 0) + 1);
                n /= i;
            }
        }
        if (n > 1) {
            counts.put(n, counts.getOrDefault(n, 0) + 1);
        }
        int idx = 0;
        values = new int[counts.size()];
        for (int x : counts.keySet()) {
            values[idx++] = x;
        }
        calc(idx - 1, 1);
        System.out.println(ans);
    }
    
    static void calc(int idx, long v) {
        if (idx < 0) {
            ans++;
            return;
        }
        for (int i = 0; i <= k * counts.get(values[idx]) && v <= m; i++) {
            calc(idx - 1, v);
            v *= values[idx];
        }
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0