結果

問題 No.368 LCM of K-products
ユーザー tentententen
提出日時 2022-08-22 18:21:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 2,413 bytes
コンパイル時間 2,386 ms
コンパイル使用メモリ 79,804 KB
実行使用メモリ 53,952 KB
最終ジャッジ日時 2024-10-10 06:39:39
合計ジャッジ時間 7,257 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
53,564 KB
testcase_01 AC 197 ms
53,452 KB
testcase_02 AC 80 ms
51,176 KB
testcase_03 AC 134 ms
52,904 KB
testcase_04 AC 127 ms
53,556 KB
testcase_05 AC 230 ms
52,672 KB
testcase_06 AC 54 ms
50,020 KB
testcase_07 AC 55 ms
50,264 KB
testcase_08 AC 54 ms
50,024 KB
testcase_09 AC 53 ms
50,164 KB
testcase_10 AC 53 ms
50,404 KB
testcase_11 AC 53 ms
50,360 KB
testcase_12 AC 53 ms
50,436 KB
testcase_13 AC 144 ms
53,648 KB
testcase_14 AC 158 ms
53,952 KB
testcase_15 AC 163 ms
53,776 KB
testcase_16 AC 165 ms
53,640 KB
testcase_17 AC 156 ms
53,660 KB
testcase_18 AC 148 ms
53,332 KB
testcase_19 AC 112 ms
53,020 KB
testcase_20 AC 136 ms
53,548 KB
testcase_21 AC 97 ms
52,828 KB
testcase_22 AC 150 ms
53,772 KB
testcase_23 AC 53 ms
50,384 KB
testcase_24 AC 53 ms
50,404 KB
testcase_25 AC 53 ms
50,456 KB
testcase_26 AC 53 ms
50,404 KB
testcase_27 AC 53 ms
50,268 KB
testcase_28 AC 53 ms
49,984 KB
testcase_29 AC 53 ms
50,312 KB
testcase_30 AC 56 ms
50,352 KB
testcase_31 AC 54 ms
50,192 KB
testcase_32 AC 53 ms
50,600 KB
testcase_33 AC 127 ms
53,624 KB
testcase_34 AC 80 ms
51,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int k = sc.nextInt();
        HashMap<Integer, ArrayList<Integer>> counts = 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 (!counts.containsKey(j)) {
                        counts.put(j, new ArrayList<>());
                    }
                    counts.get(j).add(count);
                }
            }
            if (x > 1) {
                if (!counts.containsKey(x)) {
                    counts.put(x, new ArrayList<>());
                }
                counts.get(x).add(1);
            }
        }
        long ans = 1;
        for (int x : counts.keySet()) {
            ArrayList<Integer> collection = counts.get(x);
            Collections.sort(collection);
            int sum = 0;
            for (int i = 0; i < collection.size() && i < k; i++) {
                sum += collection.get(collection.size() - i - 1);
            }
            ans *= pow(x, sum);
            ans %= MOD;
        }
        System.out.println(ans);
    }
    
    static long pow(long x, int p) {
        if (p == 0) {
            return 1;
        } else if (p % 2 == 0) {
            return pow(x * x % MOD, p / 2);
        } else {
            return pow(x, p - 1) * x % MOD;
        }
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0