結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー bonKotsubonKotsu
提出日時 2022-07-23 16:40:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,141 ms / 2,000 ms
コード長 929 bytes
コンパイル時間 4,534 ms
コンパイル使用メモリ 254,696 KB
実行使用メモリ 8,164 KB
最終ジャッジ日時 2024-04-25 17:59:39
合計ジャッジ時間 16,845 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,141 ms
7,852 KB
testcase_01 AC 6 ms
7,204 KB
testcase_02 AC 6 ms
7,244 KB
testcase_03 AC 7 ms
7,140 KB
testcase_04 AC 6 ms
7,100 KB
testcase_05 AC 6 ms
7,164 KB
testcase_06 AC 6 ms
7,140 KB
testcase_07 AC 7 ms
7,088 KB
testcase_08 AC 6 ms
7,380 KB
testcase_09 AC 6 ms
7,088 KB
testcase_10 AC 6 ms
7,168 KB
testcase_11 AC 6 ms
7,308 KB
testcase_12 AC 6 ms
7,084 KB
testcase_13 AC 792 ms
7,932 KB
testcase_14 AC 790 ms
7,852 KB
testcase_15 AC 794 ms
7,932 KB
testcase_16 AC 786 ms
8,164 KB
testcase_17 AC 790 ms
8,152 KB
testcase_18 AC 546 ms
7,936 KB
testcase_19 AC 958 ms
8,072 KB
testcase_20 AC 401 ms
8,160 KB
testcase_21 AC 400 ms
7,912 KB
testcase_22 AC 995 ms
7,876 KB
testcase_23 AC 297 ms
7,940 KB
testcase_24 AC 299 ms
7,912 KB
testcase_25 AC 728 ms
8,012 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> cnt(1000005);
  rep(i,n) {
    int a;
    cin >> a;
    for (int j = 1; j*j <= a; j++) {
      if (a%j==0) {
        if (j*j==a) cnt[j]++;
        else {
          cnt[j]++;
          cnt[a/j]++;
        }
      }
    }

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




  return 0;
}
0