結果

問題 No.368 LCM of K-products
ユーザー tentententen
提出日時 2021-11-11 15:19:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 232 ms / 2,000 ms
コード長 2,476 bytes
コンパイル時間 2,691 ms
コンパイル使用メモリ 79,988 KB
実行使用メモリ 54,424 KB
最終ジャッジ日時 2024-05-02 09:01:01
合計ジャッジ時間 7,399 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
54,272 KB
testcase_01 AC 193 ms
53,660 KB
testcase_02 AC 79 ms
51,048 KB
testcase_03 AC 163 ms
54,424 KB
testcase_04 AC 123 ms
53,492 KB
testcase_05 AC 232 ms
52,772 KB
testcase_06 AC 53 ms
50,548 KB
testcase_07 AC 54 ms
50,080 KB
testcase_08 AC 51 ms
50,264 KB
testcase_09 AC 54 ms
50,356 KB
testcase_10 AC 52 ms
50,588 KB
testcase_11 AC 51 ms
49,988 KB
testcase_12 AC 54 ms
50,040 KB
testcase_13 AC 148 ms
53,980 KB
testcase_14 AC 159 ms
53,460 KB
testcase_15 AC 150 ms
53,468 KB
testcase_16 AC 155 ms
54,148 KB
testcase_17 AC 154 ms
54,248 KB
testcase_18 AC 154 ms
53,160 KB
testcase_19 AC 107 ms
52,948 KB
testcase_20 AC 137 ms
53,604 KB
testcase_21 AC 90 ms
52,392 KB
testcase_22 AC 141 ms
54,336 KB
testcase_23 AC 52 ms
50,476 KB
testcase_24 AC 52 ms
50,356 KB
testcase_25 AC 53 ms
50,448 KB
testcase_26 AC 53 ms
50,072 KB
testcase_27 AC 53 ms
50,324 KB
testcase_28 AC 51 ms
50,496 KB
testcase_29 AC 52 ms
50,340 KB
testcase_30 AC 52 ms
50,324 KB
testcase_31 AC 51 ms
50,424 KB
testcase_32 AC 51 ms
50,176 KB
testcase_33 AC 109 ms
53,904 KB
testcase_34 AC 67 ms
50,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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> list = counts.get(x);
            Collections.sort(list);
            int sum = 0;
            for (int i = 0; i < k && list.size() - i - 1>= 0; i++) {
                sum += list.get(list.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 nextLine() throws Exception {
        return br.readLine();
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0