結果

問題 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,627 ms / 2,000 ms
コード長 957 bytes
コンパイル時間 4,358 ms
コンパイル使用メモリ 261,488 KB
実行使用メモリ 219,652 KB
最終ジャッジ日時 2024-11-08 05:23:31
合計ジャッジ時間 21,265 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,627 ms
219,648 KB
testcase_01 AC 25 ms
26,880 KB
testcase_02 AC 25 ms
26,880 KB
testcase_03 AC 25 ms
26,880 KB
testcase_04 AC 25 ms
26,880 KB
testcase_05 AC 25 ms
26,880 KB
testcase_06 AC 24 ms
26,880 KB
testcase_07 AC 26 ms
26,752 KB
testcase_08 AC 25 ms
26,880 KB
testcase_09 AC 25 ms
26,880 KB
testcase_10 AC 25 ms
27,008 KB
testcase_11 AC 25 ms
26,880 KB
testcase_12 AC 25 ms
26,880 KB
testcase_13 AC 1,151 ms
50,036 KB
testcase_14 AC 1,158 ms
50,132 KB
testcase_15 AC 1,153 ms
49,872 KB
testcase_16 AC 1,153 ms
50,060 KB
testcase_17 AC 1,153 ms
49,964 KB
testcase_18 AC 664 ms
44,288 KB
testcase_19 AC 1,326 ms
57,424 KB
testcase_20 AC 457 ms
57,712 KB
testcase_21 AC 457 ms
57,344 KB
testcase_22 AC 1,526 ms
219,652 KB
testcase_23 AC 309 ms
28,372 KB
testcase_24 AC 311 ms
28,376 KB
testcase_25 AC 974 ms
49,936 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