結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー 夜
提出日時 2021-11-18 21:24:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 371 ms / 2,000 ms
コード長 782 bytes
コンパイル時間 1,247 ms
コンパイル使用メモリ 92,136 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-11-08 05:12:54
合計ジャッジ時間 8,294 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 355 ms
8,960 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 23 ms
7,424 KB
testcase_03 AC 19 ms
7,936 KB
testcase_04 AC 17 ms
7,936 KB
testcase_05 AC 18 ms
7,808 KB
testcase_06 AC 17 ms
7,552 KB
testcase_07 AC 17 ms
7,808 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 13 ms
6,272 KB
testcase_10 AC 15 ms
6,656 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 360 ms
12,800 KB
testcase_14 AC 363 ms
12,800 KB
testcase_15 AC 371 ms
12,800 KB
testcase_16 AC 365 ms
12,792 KB
testcase_17 AC 365 ms
12,800 KB
testcase_18 AC 311 ms
6,784 KB
testcase_19 AC 344 ms
9,728 KB
testcase_20 AC 325 ms
8,192 KB
testcase_21 AC 315 ms
7,936 KB
testcase_22 AC 335 ms
7,936 KB
testcase_23 AC 295 ms
5,248 KB
testcase_24 AC 314 ms
8,960 KB
testcase_25 AC 336 ms
9,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <iomanip>
#include <cmath>
#include <stdio.h>
#include <queue>
#include <deque>
#include <cstdio>
#include <set>
#include <map>
#include <bitset>
#include <stack>
#include <cctype>
using namespace std;
int co[1000010] = {}, a[200020];
int d[1000010] = {};
int ans[200020] = {};
int main() {
	int n;
	cin >> n;
	int m = 0;
	for (int i = 0; i < n; i++) {
		cin >> a[i];
		m = max(m, a[i]);
		d[a[i]]++;
	}
	int co1 = 0;
	for (int i = 2; i <= m; i++) {
		for (int j = i; j <= m; j += i) {
			co1++;
			co[i] += d[j];
		}
	}
	for (int i = 2; i <= m; i++) {
		ans[min(n, co[i])] = i;
	}
	ans[n + 1] = 1;
	for (int i = n; i > 0; i--) {
		ans[i] = max(ans[i], ans[i + 1]);
		cout << ans[i] << endl;
	}
}
0