結果
問題 |
No.368 LCM of K-products
|
ユーザー |
![]() |
提出日時 | 2022-08-22 18:21:34 |
言語 | Java (openjdk 23) |
結果 |
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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 35 |
ソースコード
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(); } }