結果

問題 No.847 Divisors of Power
ユーザー tentententen
提出日時 2020-08-31 19:13:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 281 ms / 2,000 ms
コード長 1,256 bytes
コンパイル時間 3,682 ms
コンパイル使用メモリ 86,812 KB
実行使用メモリ 54,004 KB
最終ジャッジ日時 2024-11-16 22:19:51
合計ジャッジ時間 8,757 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
39,572 KB
testcase_01 AC 124 ms
40,964 KB
testcase_02 AC 120 ms
40,808 KB
testcase_03 AC 126 ms
41,112 KB
testcase_04 AC 140 ms
41,248 KB
testcase_05 AC 116 ms
40,960 KB
testcase_06 AC 111 ms
39,896 KB
testcase_07 AC 119 ms
41,080 KB
testcase_08 AC 104 ms
39,692 KB
testcase_09 AC 119 ms
41,160 KB
testcase_10 AC 105 ms
40,044 KB
testcase_11 AC 127 ms
41,272 KB
testcase_12 AC 105 ms
40,112 KB
testcase_13 AC 120 ms
40,392 KB
testcase_14 AC 120 ms
41,160 KB
testcase_15 AC 268 ms
49,808 KB
testcase_16 AC 118 ms
41,052 KB
testcase_17 AC 120 ms
41,068 KB
testcase_18 AC 124 ms
39,920 KB
testcase_19 AC 156 ms
41,552 KB
testcase_20 AC 114 ms
41,212 KB
testcase_21 AC 179 ms
43,284 KB
testcase_22 AC 117 ms
41,332 KB
testcase_23 AC 124 ms
40,836 KB
testcase_24 AC 281 ms
54,004 KB
testcase_25 AC 109 ms
40,156 KB
testcase_26 AC 118 ms
41,164 KB
testcase_27 AC 116 ms
41,288 KB
testcase_28 AC 113 ms
40,844 KB
testcase_29 AC 110 ms
39,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	int k = sc.nextInt();
    	int m = sc.nextInt();
    	TreeMap<Integer, Integer> primes = new TreeMap<>();
    	for (int i = 2; i <= Math.sqrt(n); i++) {
    	    while (n % i == 0) {
    	        if (primes.containsKey(i)) {
    	            primes.put(i, primes.get(i) + 1);
    	        } else {
    	            primes.put(i, 1);
    	        }
    	        n /= i;
    	    }
    	}
    	if (n > 1) {
    	    if (primes.containsKey(n)) {
    	        primes.put(n, primes.get(n) + 1);
    	    } else {
    	        primes.put(n, 1);
    	    }
    	}
    	TreeSet<Integer> results = new TreeSet<>();
    	results.add(1);
    	for (int x : primes.keySet()) {
    	    Integer tmp = Integer.MAX_VALUE;
    	    while ((tmp = results.lower(tmp)) != null) {
    	        long base = tmp.intValue();
    	        for (long i = 1; i <= (long)k * primes.get(x); i++) {
    	            base *= x;
    	            if (base > m) {
    	                break;
    	            }
    	            results.add((int)base);
    	        }
    	    }
    	}
    	System.out.println(results.size());
    }
}
0