結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー ks2mks2m
提出日時 2021-11-05 22:03:20
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,335 bytes
コンパイル時間 2,968 ms
コンパイル使用メモリ 78,292 KB
実行使用メモリ 79,856 KB
最終ジャッジ日時 2024-11-06 12:53:56
合計ジャッジ時間 26,080 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 84 ms
55,284 KB
testcase_02 AC 86 ms
55,568 KB
testcase_03 AC 94 ms
55,616 KB
testcase_04 AC 87 ms
56,068 KB
testcase_05 AC 79 ms
55,636 KB
testcase_06 AC 91 ms
55,600 KB
testcase_07 AC 78 ms
55,520 KB
testcase_08 AC 74 ms
54,840 KB
testcase_09 AC 93 ms
56,064 KB
testcase_10 AC 97 ms
55,848 KB
testcase_11 AC 71 ms
54,968 KB
testcase_12 AC 84 ms
54,884 KB
testcase_13 AC 1,266 ms
75,296 KB
testcase_14 AC 1,276 ms
75,848 KB
testcase_15 AC 1,387 ms
75,536 KB
testcase_16 AC 1,482 ms
75,796 KB
testcase_17 AC 1,318 ms
76,496 KB
testcase_18 AC 1,040 ms
75,640 KB
testcase_19 AC 1,565 ms
75,664 KB
testcase_20 AC 898 ms
79,856 KB
testcase_21 AC 897 ms
77,972 KB
testcase_22 TLE -
testcase_23 AC 477 ms
76,252 KB
testcase_24 AC 470 ms
76,608 KB
testcase_25 AC 1,238 ms
76,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.List;

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();

		int[] cnt = new int[1000001];
		for (int i = 0; i < n; i++) {
			List<Integer> list = divList(a[i]);
			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;
	}
}
0