結果

問題 No.847 Divisors of Power
ユーザー htensaihtensai
提出日時 2019-11-11 14:34:08
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,157 bytes
コンパイル時間 2,222 ms
コンパイル使用メモリ 79,420 KB
実行使用メモリ 42,128 KB
最終ジャッジ日時 2024-09-15 05:14:09
合計ジャッジ時間 7,752 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,184 KB
testcase_01 AC 132 ms
41,156 KB
testcase_02 AC 132 ms
41,112 KB
testcase_03 AC 132 ms
40,824 KB
testcase_04 AC 135 ms
40,976 KB
testcase_05 AC 131 ms
41,068 KB
testcase_06 AC 130 ms
41,124 KB
testcase_07 AC 128 ms
41,112 KB
testcase_08 AC 130 ms
41,124 KB
testcase_09 AC 130 ms
41,432 KB
testcase_10 AC 131 ms
41,116 KB
testcase_11 AC 134 ms
40,972 KB
testcase_12 AC 131 ms
40,960 KB
testcase_13 AC 130 ms
41,176 KB
testcase_14 AC 130 ms
41,004 KB
testcase_15 AC 164 ms
41,644 KB
testcase_16 AC 129 ms
41,128 KB
testcase_17 AC 118 ms
39,836 KB
testcase_18 AC 128 ms
41,196 KB
testcase_19 AC 130 ms
41,248 KB
testcase_20 AC 130 ms
41,176 KB
testcase_21 AC 158 ms
41,544 KB
testcase_22 AC 133 ms
41,308 KB
testcase_23 AC 131 ms
41,140 KB
testcase_24 AC 170 ms
42,128 KB
testcase_25 WA -
testcase_26 AC 129 ms
41,092 KB
testcase_27 AC 132 ms
41,088 KB
testcase_28 AC 131 ms
41,344 KB
testcase_29 AC 126 ms
41,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static HashMap<Integer, Integer> map = new HashMap<>();
    static int count = 0;
    static Integer[] arr;
    static int k;
    static int m;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		k = sc.nextInt();
		m = sc.nextInt();
		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);
	        }
		}
		arr = map.keySet().toArray(new Integer[0]);
		calc(0, 1);
		System.out.println(count + 1);
	}
	
	static void calc(int idx, long value) {
	    if (idx >= arr.length) {
	        return;
	    }
	    int x = arr[idx];
	    calc(idx + 1, value);
	    for (int i = 0; i < map.get(x) * k; i++) {
	        value *= x;
	        if (value > m) {
	            break;
	        }
	        count++;
	        calc(idx + 1, value);
	    }
	}
}
0