結果
問題 | No.1730 GCD on Blackboard in yukicoder |
ユーザー | ks2m |
提出日時 | 2021-11-05 22:07:45 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,386 bytes |
コンパイル時間 | 2,510 ms |
コンパイル使用メモリ | 78,444 KB |
実行使用メモリ | 139,212 KB |
最終ジャッジ日時 | 2024-11-08 04:39:40 |
合計ジャッジ時間 | 25,485 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,083 ms
63,144 KB |
testcase_01 | AC | 92 ms
46,332 KB |
testcase_02 | AC | 100 ms
46,248 KB |
testcase_03 | AC | 101 ms
46,292 KB |
testcase_04 | AC | 102 ms
46,432 KB |
testcase_05 | AC | 102 ms
46,484 KB |
testcase_06 | AC | 99 ms
46,304 KB |
testcase_07 | AC | 101 ms
46,248 KB |
testcase_08 | AC | 95 ms
46,428 KB |
testcase_09 | AC | 100 ms
46,448 KB |
testcase_10 | AC | 122 ms
46,872 KB |
testcase_11 | AC | 91 ms
46,256 KB |
testcase_12 | AC | 93 ms
46,376 KB |
testcase_13 | AC | 1,718 ms
124,036 KB |
testcase_14 | AC | 1,918 ms
131,660 KB |
testcase_15 | AC | 1,954 ms
131,724 KB |
testcase_16 | AC | 1,831 ms
122,784 KB |
testcase_17 | AC | 1,813 ms
130,696 KB |
testcase_18 | AC | 1,374 ms
130,404 KB |
testcase_19 | TLE | - |
testcase_20 | AC | 692 ms
69,764 KB |
testcase_21 | AC | 675 ms
69,552 KB |
testcase_22 | AC | 1,204 ms
64,860 KB |
testcase_23 | AC | 500 ms
64,848 KB |
testcase_24 | AC | 506 ms
64,772 KB |
testcase_25 | AC | 1,619 ms
133,344 KB |
ソースコード
import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.PrintWriter; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); String[] sa = br.readLine().split(" "); int[] a = new int[n]; for (int i = 0; i < n; i++) { a[i] = Integer.parseInt(sa[i]); } br.close(); Eratosthenes era = new Eratosthenes(1000000); int[] cnt = new int[1000001]; Map<Integer, List<Integer>> map = new HashMap<>(); for (int i = 0; i < n; i++) { if (era.isSosuu(a[i])) { cnt[1]++; cnt[a[i]]++; } else { List<Integer> list = map.get(a[i]); if (list == null) { list = divList(a[i]); map.put(a[i], list); } for (int e : list) { cnt[e]++; } } } int[] ans = new int[n]; for (int i = 1000000; i > 0; i--) { if (cnt[i] > 0) { int x = n - cnt[i]; if (ans[x] == 0) { ans[x] = i; } } } for (int i = 1; i < n; i++) { ans[i] = Math.max(ans[i], ans[i - 1]); } PrintWriter pw = new PrintWriter(System.out); for (int i : ans) { pw.println(i); } pw.flush(); } static List<Integer> divList(int n) { List<Integer> list = new ArrayList<>(); int end = (int) Math.sqrt(n); for (int i = 1; i <= end; i++) { if (n % i == 0) { list.add(i); } } int i = end * end == n ? list.size() - 2 : list.size() - 1; for ( ; i >= 0; i--) { list.add(n / list.get(i)); } return list; } static class Eratosthenes { int[] div; public Eratosthenes(int n) { div = new int[n + 1]; if (n < 2) return; div[0] = -1; div[1] = -1; int end = (int) Math.sqrt(n) + 1; for (int i = 2; i <= end; i++) { if (div[i] == 0) { div[i] = i; for (int j = i * i; j <= n; j+=i) { if (div[j] == 0) div[j] = i; } } } for (int i = end + 1; i <= n; i++) { if (div[i] == 0) div[i] = i; } } public Map<Integer, Integer> bunkai(int x) { Map<Integer, Integer> soinsu = new HashMap<>(); while (x > 1) { Integer d = div[x]; soinsu.put(d, soinsu.getOrDefault(d, 0) + 1); x /= d; } return soinsu; } public boolean isSosuu(int x) { return div[x] == x; } } }