結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
39,844 KB
testcase_01 AC 131 ms
40,684 KB
testcase_02 AC 129 ms
41,160 KB
testcase_03 AC 134 ms
41,056 KB
testcase_04 AC 135 ms
41,168 KB
testcase_05 AC 131 ms
41,264 KB
testcase_06 AC 125 ms
41,160 KB
testcase_07 AC 131 ms
41,092 KB
testcase_08 AC 130 ms
41,120 KB
testcase_09 AC 132 ms
40,984 KB
testcase_10 AC 131 ms
41,232 KB
testcase_11 AC 130 ms
40,660 KB
testcase_12 AC 138 ms
41,380 KB
testcase_13 AC 132 ms
40,936 KB
testcase_14 AC 120 ms
40,064 KB
testcase_15 AC 166 ms
41,852 KB
testcase_16 AC 132 ms
40,980 KB
testcase_17 AC 133 ms
40,832 KB
testcase_18 AC 135 ms
41,320 KB
testcase_19 AC 133 ms
41,124 KB
testcase_20 AC 131 ms
40,952 KB
testcase_21 AC 159 ms
41,292 KB
testcase_22 AC 132 ms
41,108 KB
testcase_23 AC 133 ms
41,248 KB
testcase_24 AC 177 ms
41,472 KB
testcase_25 WA -
testcase_26 AC 133 ms
40,552 KB
testcase_27 AC 119 ms
39,932 KB
testcase_28 AC 124 ms
40,668 KB
testcase_29 AC 131 ms
40,820 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++) {
	        if (value > m / x) {
	            break;
	        }
	        value *= x;
	        count++;
	        calc(idx + 1, value);
	    }
	}
}
0