結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー bonKotsubonKotsu
提出日時 2022-07-23 16:31:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,440 ms / 2,000 ms
コード長 957 bytes
コンパイル時間 4,732 ms
コンパイル使用メモリ 255,952 KB
実行使用メモリ 219,904 KB
最終ジャッジ日時 2024-04-25 18:00:13
合計ジャッジ時間 19,338 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,440 ms
219,648 KB
testcase_01 AC 14 ms
27,192 KB
testcase_02 AC 12 ms
27,156 KB
testcase_03 AC 13 ms
27,108 KB
testcase_04 AC 13 ms
27,080 KB
testcase_05 AC 15 ms
27,188 KB
testcase_06 AC 13 ms
26,996 KB
testcase_07 AC 15 ms
26,936 KB
testcase_08 AC 12 ms
27,108 KB
testcase_09 AC 14 ms
27,184 KB
testcase_10 AC 13 ms
27,084 KB
testcase_11 AC 14 ms
26,856 KB
testcase_12 AC 13 ms
26,952 KB
testcase_13 AC 1,076 ms
50,028 KB
testcase_14 AC 1,030 ms
50,008 KB
testcase_15 AC 1,067 ms
50,200 KB
testcase_16 AC 1,074 ms
49,968 KB
testcase_17 AC 1,073 ms
49,976 KB
testcase_18 AC 638 ms
44,260 KB
testcase_19 AC 1,289 ms
57,552 KB
testcase_20 AC 438 ms
57,764 KB
testcase_21 AC 445 ms
57,196 KB
testcase_22 AC 1,368 ms
219,904 KB
testcase_23 AC 289 ms
28,372 KB
testcase_24 AC 290 ms
28,372 KB
testcase_25 AC 893 ms
50,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define ll long long
#define rep(i, n) for (int i = 0; i < (n); i++)
#define P pair<int, int>
#define LP pair<ll, ll>
#define fi first
#define se second
#define pb push_back
#define eb emplace_back
#define all(s) s.begin(), s.end()
#define rall(s) s.rbegin(), s.rend()
template<class T>
void chmax(T& a, T b) { a = max(a, b); };
template<class T>
void chmin(T& a, T b) { a = min(a, b); };

int main() {
  int n;
  cin >> n;
  vector<int> g[1000005];
  rep(i,n) {
    int a;
    cin >> a;
    for (int j = 1; j*j <= a; j++) {
      if (a%j==0) {
        if (j*j==a) g[j].pb(a);
        else {
          g[j].pb(a);
          g[a/j].pb(a);
        }
      }
    }

  }
  vector<int> mx(n+1);
  rep(i,1000005) {
    int num = g[i].size();
    chmax(mx[n-num], i);
  }
  int ans = 0;
  rep(k,n) {
    chmax(ans, mx[k]);
    cout << ans << endl;
  }




  return 0;
}
0