結果

問題 No.368 LCM of K-products
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-27 20:04:16
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,308 bytes
コンパイル時間 2,733 ms
コンパイル使用メモリ 79,044 KB
実行使用メモリ 86,900 KB
最終ジャッジ日時 2024-11-17 03:38:54
合計ジャッジ時間 67,021 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 1,012 ms
46,564 KB
testcase_07 TLE -
testcase_08 AC 125 ms
46,624 KB
testcase_09 AC 126 ms
83,212 KB
testcase_10 AC 133 ms
46,596 KB
testcase_11 AC 138 ms
83,336 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 126 ms
46,204 KB
testcase_24 AC 131 ms
41,040 KB
testcase_25 AC 127 ms
41,388 KB
testcase_26 AC 128 ms
41,312 KB
testcase_27 AC 127 ms
41,036 KB
testcase_28 AC 136 ms
40,912 KB
testcase_29 AC 127 ms
41,324 KB
testcase_30 AC 114 ms
39,704 KB
testcase_31 AC 129 ms
40,936 KB
testcase_32 AC 127 ms
41,148 KB
testcase_33 TLE -
testcase_34 AC 251 ms
86,900 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();
    ArrayList<Integer> prime = new ArrayList<Integer>();
    int[] a = new int[n];
    HashSet<Integer> set = new HashSet<Integer>();
    for(int i = 0; i < n; i++) {
      a[i] = sc.nextInt();
      int t = a[i];
      for(int j = 2; j <= a[i]; j++) {
        if(t % j == 0) {
          set.add(j);
        }
        while(t % j == 0) {
          t /= j;
        }
      }
    }
    for(Iterator<Integer> i = set.iterator(); i.hasNext();) {
      prime.add(i.next());
    }
    int t = prime.size();
    int[][] rui = new int[n][t];
    for(int i = 0; i < n; i++) {
      int s = a[i];
      for(int j = 0; j < t; j++) {
        int p = prime.get(j);
        while(s % p == 0) {
          s /= p;
          rui[i][j]++;
        }
      }
    }
    long ans = 1;
    long MOD = (long)Math.pow(10, 9) + 7;
    for(int j = 0; j < t; j++) {
      int[] r = new int[n];
      for(int i = 0; i < n; i++) {
        r[i] = rui[i][j];
      }
      Arrays.sort(r);
      int p = prime.get(j);
      for(int l = n - 1; l >= n - k; l--) {
        ans = (ans * (long)Math.pow(p, r[l])) % MOD;
      }
    }
    System.out.println(ans);
  }
}
0