結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー umezoumezo
提出日時 2021-11-05 23:42:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 313 ms / 2,000 ms
コード長 663 bytes
コンパイル時間 2,253 ms
コンパイル使用メモリ 202,740 KB
実行使用メモリ 12,028 KB
最終ジャッジ日時 2024-11-08 04:53:49
合計ジャッジ時間 8,705 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 305 ms
11,776 KB
testcase_01 AC 31 ms
11,008 KB
testcase_02 AC 32 ms
11,136 KB
testcase_03 AC 31 ms
11,008 KB
testcase_04 AC 31 ms
11,008 KB
testcase_05 AC 32 ms
11,060 KB
testcase_06 AC 32 ms
11,008 KB
testcase_07 AC 32 ms
11,060 KB
testcase_08 AC 33 ms
10,880 KB
testcase_09 AC 32 ms
11,008 KB
testcase_10 AC 33 ms
11,008 KB
testcase_11 AC 33 ms
11,008 KB
testcase_12 AC 32 ms
11,136 KB
testcase_13 AC 312 ms
12,028 KB
testcase_14 AC 310 ms
11,820 KB
testcase_15 AC 311 ms
11,860 KB
testcase_16 AC 305 ms
11,816 KB
testcase_17 AC 313 ms
11,776 KB
testcase_18 AC 300 ms
11,776 KB
testcase_19 AC 300 ms
11,776 KB
testcase_20 AC 294 ms
11,884 KB
testcase_21 AC 291 ms
11,776 KB
testcase_22 AC 309 ms
11,904 KB
testcase_23 AC 293 ms
11,896 KB
testcase_24 AC 302 ms
11,872 KB
testcase_25 AC 301 ms
11,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int n;
  cin>>n;
  vector<int> A(1001001),B(1001001);
  rep(i,n){
    int a;
    cin>>a;
    A[a]++;
  }
  B[1]=n;
  for(int i=2;i<=1000000;i++){
    for(int j=i;j<=1000000;j+=i){
      B[i]+=A[j];
    }
  }
  vector<int> C(n+1);
  int now=0;
  int r=n-1;
  for(int i=1000000;i>0;i--){
    if(B[i]>now){
      while(n-B[i]<=r){
        C[r]=i;
        r--;
      }
      now=B[i];
    }
  }
  rep(i,n) cout<<C[i]<<endl;
  
    
  return 0;
}
0