結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー norikamenorikame
提出日時 2021-11-12 17:37:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,116 ms / 2,000 ms
コード長 952 bytes
コンパイル時間 3,188 ms
コンパイル使用メモリ 208,892 KB
実行使用メモリ 18,048 KB
最終ジャッジ日時 2024-11-08 05:10:47
合計ジャッジ時間 13,374 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 338 ms
8,704 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 8 ms
7,168 KB
testcase_03 AC 8 ms
7,168 KB
testcase_04 AC 9 ms
7,168 KB
testcase_05 AC 8 ms
7,296 KB
testcase_06 AC 8 ms
7,168 KB
testcase_07 AC 9 ms
7,168 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 6 ms
6,016 KB
testcase_10 AC 8 ms
6,144 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 3 ms
5,248 KB
testcase_13 AC 926 ms
17,152 KB
testcase_14 AC 933 ms
17,280 KB
testcase_15 AC 923 ms
17,152 KB
testcase_16 AC 946 ms
17,152 KB
testcase_17 AC 945 ms
17,280 KB
testcase_18 AC 613 ms
14,976 KB
testcase_19 AC 1,116 ms
18,048 KB
testcase_20 AC 318 ms
7,552 KB
testcase_21 AC 310 ms
7,680 KB
testcase_22 AC 329 ms
7,552 KB
testcase_23 AC 287 ms
5,248 KB
testcase_24 AC 290 ms
8,704 KB
testcase_25 AC 853 ms
18,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using ll = long long;

#define rep(i, n) for (int i=0; i<(int)(n); ++(i))
#define rep3(i, m, n) for (int i=(m); (i)<(int)(n); ++(i))
#define repr(i, n) for (int i=(int)(n)-1; (i)>=0; --(i))
#define rep3r(i, m, n) for (int i=(int)(n)-1; (i)>=(int)(m); --(i))
#define all(x) (x).begin(), (x).end()

// 

ll gcd(ll a, ll b) { return (b ? gcd(b, a%b) : a); }

int main() {
	int n;
	cin >> n;
	vector<int> a(n);
	rep(i, n) cin >> a[i];
	map<int, int> avals;
	rep(i, n) avals[a[i]]++;
	int mval = avals.rbegin()->first;
	vector<int> gcnt(mval+1);
	for (auto pi : avals) {
		for (int i=1; i*i<=pi.first; ++i) if (pi.first%i == 0) {
			gcnt[i] += pi.second;
			if (i != pi.first/i) gcnt[pi.first/i] += pi.second;
		}
	}
	vector<int> mvals(n+1);
	rep3(i, 1, mval+1) mvals[gcnt[i]] = max(mvals[gcnt[i]], i);
	repr(i, n) mvals[i] = max(mvals[i], mvals[i+1]);
	rep3r(i, 1, n+1) cout << mvals[i] << endl;
	return 0;
}
0