結果

問題 No.368 LCM of K-products
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-27 19:49:42
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,186 bytes
コンパイル時間 4,785 ms
コンパイル使用メモリ 78,692 KB
実行使用メモリ 87,112 KB
最終ジャッジ日時 2024-11-17 03:08:20
合計ジャッジ時間 66,786 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 908 ms
45,852 KB
testcase_07 TLE -
testcase_08 AC 118 ms
46,480 KB
testcase_09 AC 103 ms
82,016 KB
testcase_10 AC 114 ms
46,592 KB
testcase_11 AC 118 ms
82,840 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 119 ms
46,260 KB
testcase_24 AC 118 ms
41,268 KB
testcase_25 AC 123 ms
41,380 KB
testcase_26 AC 115 ms
40,876 KB
testcase_27 AC 117 ms
41,216 KB
testcase_28 AC 115 ms
41,160 KB
testcase_29 AC 112 ms
41,052 KB
testcase_30 AC 113 ms
40,968 KB
testcase_31 AC 121 ms
41,248 KB
testcase_32 AC 112 ms
41,064 KB
testcase_33 TLE -
testcase_34 AC 246 ms
87,112 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];
    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) {
          if(!prime.contains(j)) prime.add(j);
        }
        while(t % j == 0) {
          t /= j;
        }
      }
    }
    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