結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー atjh16atjh16
提出日時 2021-11-05 23:35:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,841 ms / 2,000 ms
コード長 460 bytes
コンパイル時間 2,378 ms
コンパイル使用メモリ 208,732 KB
実行使用メモリ 33,152 KB
最終ジャッジ日時 2024-11-08 04:54:55
合計ジャッジ時間 23,948 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,694 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 1,826 ms
22,016 KB
testcase_14 AC 1,841 ms
21,888 KB
testcase_15 AC 1,824 ms
21,888 KB
testcase_16 AC 1,828 ms
22,016 KB
testcase_17 AC 1,827 ms
22,016 KB
testcase_18 AC 894 ms
13,568 KB
testcase_19 AC 1,771 ms
33,152 KB
testcase_20 AC 688 ms
5,248 KB
testcase_21 AC 697 ms
5,248 KB
testcase_22 AC 1,566 ms
5,248 KB
testcase_23 AC 282 ms
5,248 KB
testcase_24 AC 286 ms
5,248 KB
testcase_25 AC 1,323 ms
22,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int n, a;
map<int, int> b;
int c[200000];

int main()
{
	cin >> n;

	for (int i = 0; i < n; i++) {
		cin >> a;

		for (int j = 1; j <= sqrt(a); j++) {
			if (a % j == 0) {
				b[j]++;

				if(j * j != a)
					b[a / j]++;
			}
		}
	}

	for (auto j : b) {
		int k = n - j.second;
		c[k] = max(c[k], j.first);
	}

	for (int i = 0; i < n; i++) {
		if(i > 0)
			c[i] = max(c[i], c[i - 1]);
		cout << c[i] << endl;
	}
}
0