結果

問題 No.368 LCM of K-products
ユーザー tentententen
提出日時 2020-10-27 19:55:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 410 ms / 2,000 ms
コード長 1,429 bytes
コンパイル時間 2,993 ms
コンパイル使用メモリ 79,316 KB
実行使用メモリ 59,088 KB
最終ジャッジ日時 2024-07-21 22:01:27
合計ジャッジ時間 10,744 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 262 ms
56,684 KB
testcase_01 AC 346 ms
59,088 KB
testcase_02 AC 216 ms
56,268 KB
testcase_03 AC 263 ms
56,180 KB
testcase_04 AC 240 ms
58,804 KB
testcase_05 AC 410 ms
55,208 KB
testcase_06 AC 130 ms
54,068 KB
testcase_07 AC 131 ms
53,896 KB
testcase_08 AC 131 ms
54,192 KB
testcase_09 AC 126 ms
53,964 KB
testcase_10 AC 128 ms
54,112 KB
testcase_11 AC 129 ms
53,956 KB
testcase_12 AC 136 ms
53,788 KB
testcase_13 AC 247 ms
56,592 KB
testcase_14 AC 269 ms
56,392 KB
testcase_15 AC 277 ms
55,936 KB
testcase_16 AC 268 ms
56,596 KB
testcase_17 AC 252 ms
56,180 KB
testcase_18 AC 280 ms
55,936 KB
testcase_19 AC 211 ms
56,580 KB
testcase_20 AC 263 ms
56,876 KB
testcase_21 AC 196 ms
56,108 KB
testcase_22 AC 282 ms
56,436 KB
testcase_23 AC 130 ms
54,020 KB
testcase_24 AC 132 ms
53,940 KB
testcase_25 AC 121 ms
52,776 KB
testcase_26 AC 131 ms
54,220 KB
testcase_27 AC 132 ms
54,072 KB
testcase_28 AC 131 ms
54,364 KB
testcase_29 AC 134 ms
54,080 KB
testcase_30 AC 132 ms
54,168 KB
testcase_31 AC 133 ms
54,032 KB
testcase_32 AC 134 ms
54,080 KB
testcase_33 AC 227 ms
56,752 KB
testcase_34 AC 199 ms
54,048 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>> result = new HashMap<>();
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            for (int j = 2; j <= Math.sqrt(x); j++) {
                int count = 0;
                while (x % j == 0) {
                    count++;
                    x /= j;
                }
                if (count > 0) {
                    if (!result.containsKey(j)) {
                        result.put(j, new ArrayList<>());
                    }
                    result.get(j).add(count);
                }
            }
            if (x > 1) {
                if (!result.containsKey(x)) {
                    result.put(x, new ArrayList<>());
                }
                result.get(x).add(1);
            }
        }
        long ans = 1;
        for (int x : result.keySet()) {
            Collections.sort(result.get(x));
            for (int i = 0; i < result.get(x).size() && i < k; i++) {
                for (int j = 0; j < result.get(x).get(result.get(x).size() - i - 1); j++) {
                    ans *= x;
                    ans %= MOD;
                }
            }
        }
        System.out.println(ans);
    }
}
0