結果

問題 No.368 LCM of K-products
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-27 19:11:42
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,355 bytes
コンパイル時間 2,471 ms
コンパイル使用メモリ 78,964 KB
実行使用メモリ 773,988 KB
最終ジャッジ日時 2024-11-16 21:50:29
合計ジャッジ時間 14,018 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 TLE -
testcase_07 RE -
testcase_08 AC 145 ms
40,972 KB
testcase_09 AC 121 ms
41,024 KB
testcase_10 RE -
testcase_11 AC 127 ms
41,388 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 130 ms
41,080 KB
testcase_24 AC 111 ms
40,276 KB
testcase_25 AC 123 ms
40,940 KB
testcase_26 AC 112 ms
40,272 KB
testcase_27 AC 103 ms
39,824 KB
testcase_28 AC 103 ms
39,660 KB
testcase_29 AC 117 ms
41,344 KB
testcase_30 AC 125 ms
41,408 KB
testcase_31 AC 125 ms
41,352 KB
testcase_32 AC 120 ms
41,448 KB
testcase_33 RE -
testcase_34 MLE -
権限があれば一括ダウンロードができます

ソースコード

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];
    int M = 0;
    for(int i = 0; i < n; i++) {
      a[i] = sc.nextInt();
      M = Math.max(M, a[i]);
    }
    boolean[] is_prime = new boolean[M + 1];
 
    for(int i = 0; i <= M; i++) is_prime[i] = true;
 
    is_prime[0] = false;

    is_prime[1] = false;

    for(int i = 2; i <= M; i++) {
 
     if(is_prime[i]) {
       
       prime.add(i);
       
       for(int j = 2 * i; j <= n; j += i) is_prime[j] = false;

     }
   
    }
    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