結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー 沙耶花沙耶花
提出日時 2021-11-07 14:33:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 368 ms / 2,000 ms
コード長 557 bytes
コンパイル時間 4,441 ms
コンパイル使用メモリ 261,532 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2024-11-08 05:06:43
合計ジャッジ時間 11,540 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 349 ms
8,064 KB
testcase_01 AC 30 ms
7,296 KB
testcase_02 AC 32 ms
7,168 KB
testcase_03 AC 32 ms
7,168 KB
testcase_04 AC 31 ms
7,296 KB
testcase_05 AC 31 ms
7,168 KB
testcase_06 AC 31 ms
7,168 KB
testcase_07 AC 32 ms
7,168 KB
testcase_08 AC 32 ms
7,168 KB
testcase_09 AC 32 ms
7,168 KB
testcase_10 AC 32 ms
7,168 KB
testcase_11 AC 32 ms
7,168 KB
testcase_12 AC 32 ms
7,168 KB
testcase_13 AC 365 ms
7,936 KB
testcase_14 AC 368 ms
8,064 KB
testcase_15 AC 360 ms
8,064 KB
testcase_16 AC 362 ms
8,064 KB
testcase_17 AC 362 ms
7,936 KB
testcase_18 AC 343 ms
7,936 KB
testcase_19 AC 346 ms
7,936 KB
testcase_20 AC 329 ms
7,936 KB
testcase_21 AC 328 ms
7,936 KB
testcase_22 AC 346 ms
7,936 KB
testcase_23 AC 315 ms
7,936 KB
testcase_24 AC 320 ms
7,936 KB
testcase_25 AC 337 ms
7,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000001


int main(){
	
	int n;
	cin>>n;
	
	vector<int> a(1000001,0);
	rep(i,n){
		int x;
		cin>>x;
		a[x]++;
	}
	
	for(int i=1;i<=1000000;i++){
		for(int j=i*2;j<=1000000;j+=i){
			a[i] += a[j];
		}
	}
	
	vector<int> ans(n+1,0);
	rep(i,a.size()){
		ans[n-a[i]] = i;
	}
	int as = 0;
	rep(i,n){
		as = max(as,ans[i]);
		cout<<as<<endl;
	}
	
	return 0;
}
0