結果
問題 | No.368 LCM of K-products |
ユーザー | hiromi_ayase |
提出日時 | 2016-05-28 00:05:45 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 183 ms / 2,000 ms |
コード長 | 5,451 bytes |
コンパイル時間 | 2,449 ms |
コンパイル使用メモリ | 89,040 KB |
実行使用メモリ | 58,976 KB |
最終ジャッジ日時 | 2024-09-22 14:48:41 |
合計ジャッジ時間 | 7,983 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 163 ms
58,776 KB |
testcase_01 | AC | 149 ms
58,624 KB |
testcase_02 | AC | 126 ms
58,648 KB |
testcase_03 | AC | 145 ms
58,864 KB |
testcase_04 | AC | 153 ms
58,664 KB |
testcase_05 | AC | 183 ms
58,764 KB |
testcase_06 | AC | 100 ms
56,112 KB |
testcase_07 | AC | 104 ms
55,704 KB |
testcase_08 | AC | 93 ms
55,136 KB |
testcase_09 | AC | 104 ms
55,848 KB |
testcase_10 | AC | 104 ms
55,864 KB |
testcase_11 | AC | 101 ms
55,716 KB |
testcase_12 | AC | 101 ms
56,000 KB |
testcase_13 | AC | 153 ms
58,464 KB |
testcase_14 | AC | 157 ms
58,792 KB |
testcase_15 | AC | 163 ms
58,536 KB |
testcase_16 | AC | 159 ms
58,740 KB |
testcase_17 | AC | 150 ms
58,704 KB |
testcase_18 | AC | 168 ms
58,848 KB |
testcase_19 | AC | 131 ms
58,124 KB |
testcase_20 | AC | 158 ms
58,976 KB |
testcase_21 | AC | 123 ms
58,028 KB |
testcase_22 | AC | 178 ms
58,804 KB |
testcase_23 | AC | 93 ms
55,268 KB |
testcase_24 | AC | 104 ms
55,760 KB |
testcase_25 | AC | 94 ms
55,500 KB |
testcase_26 | AC | 93 ms
55,328 KB |
testcase_27 | AC | 102 ms
55,584 KB |
testcase_28 | AC | 93 ms
55,200 KB |
testcase_29 | AC | 91 ms
55,488 KB |
testcase_30 | AC | 100 ms
55,696 KB |
testcase_31 | AC | 102 ms
55,900 KB |
testcase_32 | AC | 101 ms
55,788 KB |
testcase_33 | AC | 142 ms
57,888 KB |
testcase_34 | AC | 126 ms
58,520 KB |
ソースコード
import java.io.IOException; import java.io.InputStream; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.Comparator; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.NoSuchElementException; public class Main { private static int[] primes = sieveAtkin(1000000); public static void main(String[] args) { FastScanner sc = new FastScanner(); int N = sc.nextInt(); int K = sc.nextInt(); long[] a = sc.nextLongList(N); Map<Long, List<Long>> map = new HashMap<>(); for (long x : a) { for (long[] y : factorize(x)) { if (!map.containsKey(y[0])) { map.put(y[0], new ArrayList<Long>()); } map.get(y[0]).add(y[1]); } } for (List<Long> list : map.values()) { Collections.sort(list, new Comparator<Long>() { @Override public int compare(Long o1, Long o2) { return Long.compare(o2, o1); } }); } long MOD = 1000000000 + 7; long ret = 1; for (Map.Entry<Long, List<Long>> entry : map.entrySet()) { List<Long> list = entry.getValue(); long x = entry.getKey(); long total = 0; for (int i = 0; i < Math.min(K, list.size()); i++) { total += list.get(i); } ret *= powMod(x, total, MOD); ret %= MOD; } System.out.println(ret); } public static long powMod(long x, long k, long mod) { int n = 63 - Long.numberOfLeadingZeros(k); long answer = 1; for (int i = n; i >= 0; i--) { answer = (answer * answer) % mod; if (((k >> i) & 1L) == 1L) { answer = (answer * x) % mod; } } return answer; } public static long[][] factorize(long n) { int rp = (int) Math.sqrt(n); long[][] factors = new long[100][2]; int idx = 0; for (int i = 0; primes[i] <= rp; i++) { int p = primes[i]; int count = 0; while (n % p == 0) { count++; n /= p; } if (count > 0) { factors[idx][0] = p; factors[idx][1] = count; idx++; } if (n == 1) { break; } } if (n != 1) { factors[idx][0] = n; factors[idx][1] = 1; idx++; } return Arrays.copyOf(factors, idx); } public static int[] sieveAtkin(int size) { boolean[] isPrime = new boolean[size + 1]; int sqrtN = (int) Math.sqrt(size); int n; for (int x = 1; x <= sqrtN; ++x) { for (int y = 1; y <= sqrtN; ++y) { n = 4 * x * x + y * y; if (n <= size && (n % 12 == 1 || n % 12 == 5)) { isPrime[n] = !isPrime[n]; } n = 3 * x * x + y * y; if (n <= size && n % 12 == 7) { isPrime[n] = !isPrime[n]; } n = 3 * x * x - y * y; if (x > y && n <= size && n % 12 == 11) { isPrime[n] = !isPrime[n]; } } } for (n = 5; n <= sqrtN; ++n) { if (isPrime[n]) { for (int k = n * n; k <= size; k += n * n) { isPrime[k] = false; } } } isPrime[2] = isPrime[3] = true; int[] ret = new int[size]; int count = 0; for (int i = 1; i < size; i++) { if (isPrime[i]) { ret[count++] = i; } } return Arrays.copyOf(ret, count); } } class FastScanner { public static String debug = null; private final InputStream in = System.in; private int ptr = 0; private int buflen = 0; private byte[] buffer = new byte[1024]; private boolean eos = false; private boolean hasNextByte() { if (ptr < buflen) { return true; } else { ptr = 0; try { if (debug != null) { buflen = debug.length(); buffer = debug.getBytes(); debug = ""; eos = true; } else { buflen = in.read(buffer); } } catch (IOException e) { e.printStackTrace(); } if (buflen < 0) { eos = true; return false; } else if (buflen == 0) { return false; } } return true; } private int readByte() { if (hasNextByte()) return buffer[ptr++]; else return -1; } private static boolean isPrintableChar(int c) { return 33 <= c && c <= 126; } private void skipUnprintable() { while (hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++; } public boolean isEOS() { return this.eos; } public boolean hasNext() { skipUnprintable(); return hasNextByte(); } public String next() { if (!hasNext()) throw new NoSuchElementException(); StringBuilder sb = new StringBuilder(); int b = readByte(); while (isPrintableChar(b)) { sb.appendCodePoint(b); b = readByte(); } return sb.toString(); } public long nextLong() { if (!hasNext()) throw new NoSuchElementException(); long n = 0; boolean minus = false; int b = readByte(); if (b == '-') { minus = true; b = readByte(); } if (b < '0' || '9' < b) { throw new NumberFormatException(); } while (true) { if ('0' <= b && b <= '9') { n *= 10; n += b - '0'; } else if (b == -1 || !isPrintableChar(b)) { return minus ? -n : n; } else { throw new NumberFormatException(); } b = readByte(); } } public int nextInt() { return (int) nextLong(); } public long[] nextLongList(int n) { return nextLongTable(1, n)[0]; } public int[] nextIntList(int n) { return nextIntTable(1, n)[0]; } public long[][] nextLongTable(int n, int m) { long[][] ret = new long[n][m]; for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { ret[i][j] = nextLong(); } } return ret; } public int[][] nextIntTable(int n, int m) { int[][] ret = new int[n][m]; for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { ret[i][j] = nextInt(); } } return ret; } }