結果
問題 | No.847 Divisors of Power |
ユーザー | tenten |
提出日時 | 2023-08-01 13:23:03 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 64 ms / 2,000 ms |
コード長 | 2,526 bytes |
コンパイル時間 | 3,816 ms |
コンパイル使用メモリ | 84,536 KB |
実行使用メモリ | 50,496 KB |
最終ジャッジ日時 | 2024-10-11 05:08:08 |
合計ジャッジ時間 | 5,960 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 57 ms
50,380 KB |
testcase_01 | AC | 55 ms
50,316 KB |
testcase_02 | AC | 56 ms
49,976 KB |
testcase_03 | AC | 55 ms
50,308 KB |
testcase_04 | AC | 55 ms
50,120 KB |
testcase_05 | AC | 56 ms
49,836 KB |
testcase_06 | AC | 55 ms
50,344 KB |
testcase_07 | AC | 55 ms
50,208 KB |
testcase_08 | AC | 56 ms
50,308 KB |
testcase_09 | AC | 60 ms
50,212 KB |
testcase_10 | AC | 56 ms
50,064 KB |
testcase_11 | AC | 55 ms
50,192 KB |
testcase_12 | AC | 55 ms
50,496 KB |
testcase_13 | AC | 55 ms
50,304 KB |
testcase_14 | AC | 56 ms
50,224 KB |
testcase_15 | AC | 64 ms
49,976 KB |
testcase_16 | AC | 54 ms
50,268 KB |
testcase_17 | AC | 55 ms
50,120 KB |
testcase_18 | AC | 55 ms
50,316 KB |
testcase_19 | AC | 56 ms
50,308 KB |
testcase_20 | AC | 56 ms
50,324 KB |
testcase_21 | AC | 59 ms
50,372 KB |
testcase_22 | AC | 56 ms
49,900 KB |
testcase_23 | AC | 56 ms
50,276 KB |
testcase_24 | AC | 64 ms
50,320 KB |
testcase_25 | AC | 54 ms
50,272 KB |
testcase_26 | AC | 54 ms
50,188 KB |
testcase_27 | AC | 55 ms
50,400 KB |
testcase_28 | AC | 54 ms
49,832 KB |
testcase_29 | AC | 54 ms
50,016 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { static int m; static int k; static int[] values; static long[] amounts; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); k = sc.nextInt(); m = sc.nextInt(); HashMap<Integer, Integer> counts = new HashMap<>(); 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, 1); } values = new int[counts.size()]; amounts = new long[counts.size()]; int idx = 0; for (int x : counts.keySet()) { values[idx] = x; amounts[idx] = counts.get(x); idx++; } System.out.println(dfw(idx - 1, 1)); } static int dfw(int idx, long v) { if (idx < 0) { return 1; } long current = 1; int ans = 0; for (int i = 0; i <= amounts[idx] * k && v * current <= m; i++) { ans += dfw(idx - 1, v * current); current *= values[idx]; } return ans; } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } 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 int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }