結果

問題 No.368 LCM of K-products
ユーザー htensaihtensai
提出日時 2019-11-21 12:56:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 418 ms / 2,000 ms
コード長 1,734 bytes
コンパイル時間 2,540 ms
コンパイル使用メモリ 80,092 KB
実行使用メモリ 61,400 KB
最終ジャッジ日時 2024-10-09 16:50:23
合計ジャッジ時間 10,845 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 280 ms
58,596 KB
testcase_01 AC 383 ms
59,804 KB
testcase_02 AC 223 ms
54,432 KB
testcase_03 AC 289 ms
59,992 KB
testcase_04 AC 248 ms
60,408 KB
testcase_05 AC 418 ms
59,800 KB
testcase_06 AC 130 ms
54,136 KB
testcase_07 AC 130 ms
53,624 KB
testcase_08 AC 132 ms
53,888 KB
testcase_09 AC 130 ms
54,040 KB
testcase_10 AC 130 ms
54,108 KB
testcase_11 AC 132 ms
53,936 KB
testcase_12 AC 133 ms
54,036 KB
testcase_13 AC 264 ms
58,360 KB
testcase_14 AC 296 ms
58,796 KB
testcase_15 AC 294 ms
60,960 KB
testcase_16 AC 277 ms
58,892 KB
testcase_17 AC 268 ms
58,528 KB
testcase_18 AC 296 ms
61,400 KB
testcase_19 AC 211 ms
56,576 KB
testcase_20 AC 268 ms
58,716 KB
testcase_21 AC 199 ms
56,488 KB
testcase_22 AC 292 ms
61,316 KB
testcase_23 AC 117 ms
52,736 KB
testcase_24 AC 134 ms
53,972 KB
testcase_25 AC 130 ms
54,192 KB
testcase_26 AC 130 ms
54,224 KB
testcase_27 AC 131 ms
54,204 KB
testcase_28 AC 131 ms
54,396 KB
testcase_29 AC 131 ms
53,880 KB
testcase_30 AC 134 ms
53,868 KB
testcase_31 AC 132 ms
54,188 KB
testcase_32 AC 131 ms
54,060 KB
testcase_33 AC 234 ms
57,060 KB
testcase_34 AC 210 ms
54,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt();
		HashMap<Integer, ArrayList<Integer>> allMap = new HashMap<>();
		for (int i = 0; i < n; i++) {
		    HashMap<Integer, Integer> map = new HashMap<>();
		    int x = sc.nextInt();
		    for (int j = 2; j <= Math.sqrt(x); j++) {
		        while (x % j == 0) {
		            if (map.containsKey(j)) {
		                map.put(j, map.get(j) + 1);
		            } else {
		                map.put(j, 1);
		            }
		            x /= j;
		        }
		    }
		    if (x != 1) {
		        if (map.containsKey(x)) {
		            map.put(x, map.get(x) + 1);
		        } else {
		            map.put(x, 1);
		        }
		    }
    	    for (Map.Entry<Integer, Integer> entry : map.entrySet()) {
    	        if (!allMap.containsKey(entry.getKey())) {
    	            allMap.put(entry.getKey(), new ArrayList<Integer>());
    	        }
                allMap.get(entry.getKey()).add(entry.getValue());
    	    }
		}
	    long total = 1;
	    for (Map.Entry<Integer, ArrayList<Integer>> entry : allMap.entrySet()) {
	        ArrayList<Integer> list = entry.getValue();
	        Collections.sort(list);
	        int sum = 0;
	        for (int i = 0; i < list.size() && i < k; i++) {
	            sum += list.get(list.size() - i - 1);
	        }
	        total *= pow(entry.getKey(), sum);
	        total %= MOD;
	    }
	    System.out.println(total);
	}
	
	static long pow(int base, int power) {
	    long ans = 1;
	    for (int i = 0; i < power; i++) {
	        ans *= base;
	        ans %= MOD;
	    }
	    return ans;
	}
}
0